diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib-dns/Makefile.am | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/lib-dns/Makefile.am b/src/lib-dns/Makefile.am new file mode 100644 index 0000000..509f7b0 --- /dev/null +++ b/src/lib-dns/Makefile.am @@ -0,0 +1,36 @@ +noinst_LTLIBRARIES = libdns.la + +AM_CPPFLAGS = \ + -I$(top_srcdir)/src/lib + +libdns_la_SOURCES = \ + dns-lookup.c \ + dns-util.c + +headers = \ + dns-lookup.h \ + dns-util.h + +test_programs = \ + test-dns-util + +noinst_PROGRAMS = $(test_programs) + +test_libs = \ + libdns.la \ + ../lib-test/libtest.la \ + ../lib/liblib.la + +test_dns_util_SOURCE = test-dns-util.c +test_dns_util_LDADD = $(test_libs) +test_dns_util_CFLAGS = $(AM_CPPFLAGS) \ + -I$(top_srcdir)/src/lib-test + +check-local: + for bin in $(test_programs); do \ + if ! $(RUN_TEST) ./$$bin; then exit 1; fi; \ + done + + +pkginc_libdir=$(pkgincludedir) +pkginc_lib_HEADERS = $(headers) |