15 lines
379 B
Makefile
15 lines
379 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
if HAVE_SQLITE3
|
|
bin_PROGRAMS = sndfile-regtest
|
|
endif
|
|
|
|
noinst_HEADERS = regtest.h
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src $(SQLITE3_CFLAGS) $(OS_SPECIFIC_CFLAGS)
|
|
|
|
sndfile_regtest_SOURCES = sndfile-regtest.c database.c checksum.c
|
|
sndfile_regtest_LDADD = $(top_builddir)/src/libsndfile.la $(SQLITE3_LIBS)
|
|
|
|
CLEANFILES = *~ *.exe
|