You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|
|
|