20 lines
415 B
Makefile
20 lines
415 B
Makefile
|
## AUTOMAKE_OPTIONS = foreign
|
||
|
|
||
|
AM_CPPFLAGS = \
|
||
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
||
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
||
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
||
|
-DCNFPATH=\""$(prefix)/etc"\" \
|
||
|
-I$(top_srcdir)/include
|
||
|
|
||
|
AM_CFLAGS = -Wall -g
|
||
|
|
||
|
# where to find libsxmp
|
||
|
libtdata = $(top_builddir)/lib/.libs/libtdata.la
|
||
|
|
||
|
bin_PROGRAMS = idxatest
|
||
|
|
||
|
idxatest_SOURCES = idxa.c
|
||
|
idxatest_LDADD = $(libtdata) -lpthread
|
||
|
|