## Process this file with automake to produce Makefile.in INCLUDES = \ -I$(top_builddir)/gl -I$(top_srcdir)/gl \ -I$(top_builddir)/src -I$(top_srcdir)/src \ -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \ -DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ -DPACKAGE_BIN_DIR=\""$(bindir)"\" \ -DPACKAGE_LOCALSTATE_DIR=\""$(localstatedir)"\" \ -DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \ -DPACKAGE_LIB_DIR=\""$(libdir)"\" lib_LTLIBRARIES = librazor.la check_PROGRAMS = test-hashtable if HAVE_LUA check_PROGRAMS += test-lua endif librazorincludedir = $(includedir)/razor librazorinclude_HEADERS = \ razor.h librazor_la_SOURCES = \ razor-internal.h \ razor.h \ razor.c \ root.c \ types.c \ util.c \ rpm.c \ iterator.c \ importer.c \ merger.c \ transaction.c if HAVE_LUA librazor_la_SOURCES += lua.c endif librazor_la_LIBADD = $(ZLIB_LIBS) $(LUA_LIBS) ../gl/libgnu.la $(EXTRA_LIBS) librazor_la_LDFLAGS = -no-undefined test_hashtable_SOURCES = test-hashtable.c test_hashtable_LDADD = types.lo ../gl/libgnu.la $(EXTRA_LIBS) TESTS = test-hashtable if HAVE_LUA test_lua_SOURCES = test-lua.c test_lua_LDADD = lua.lo util.lo types.lo $(LUA_LIBS) ../gl/libgnu.la \ $(EXTRA_LIBS) TESTS += test-lua endif EXTRA_DIST = \ test.lua clean-local : rm -f *~