1 ## Process this file with automake to produce Makefile.in
6 -I$(top_builddir)/gl -I$(top_srcdir)/gl \
7 -I$(top_builddir)/src -I$(top_srcdir)/src \
8 -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \
9 -DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
10 -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
11 -DPACKAGE_BIN_DIR=\""$(bindir)"\" \
12 -DPACKAGE_LOCALSTATE_DIR=\""$(localstatedir)"\" \
13 -DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
14 -DPACKAGE_LIB_DIR=\""$(libdir)"\"
16 lib_LTLIBRARIES = librazor.la
17 check_PROGRAMS = test-pfu
19 check_PROGRAMS += test-lua
22 if INSTALL_TEST_PROGRAMS
23 bin_PROGRAMS = $(check_PROGRAMS)
26 librazorincludedir = $(includedir)/razor
28 librazorinclude_HEADERS = \
31 librazor_la_SOURCES = \
52 librazor_la_SOURCES += lua.c
55 librazor_la_LIBADD = $(ZLIB_LIBS) types/libtypes.la $(LUA_LIBS) \
56 ../gl/libgnu.la $(INTLLIBS) $(EXTRA_LIBS)
57 librazor_la_LDFLAGS = -no-undefined -export-symbols-regex '^razor_' \
58 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
60 test_pfu_SOURCES = test-pfu.c
61 test_pfu_LDADD = path.lo util.lo error.lo types/libtypes.la \
62 ../gl/libgnu.la $(INTLLIBS) $(EXTRA_LIBS)
67 test_lua_SOURCES = test-lua.c
68 test_lua_LDADD = lua.lo util.lo error.lo types/libtypes.la $(LUA_LIBS) \
69 ../gl/libgnu.la $(INTLLIBS) $(EXTRA_LIBS)