Home | History | Annotate | Line # | Download | only in libtest
      1      1.1  christos include $(top_srcdir)/Makefile.top
      2      1.1  christos 
      3      1.1  christos AM_CPPFLAGS +=			\
      4      1.1  christos 	$(LIBISC_CFLAGS)	\
      5      1.1  christos 	$(LIBDNS_CFLAGS)	\
      6      1.1  christos 	$(LIBNS_CFLAGS)		\
      7  1.1.1.2  christos 	$(LIBURCU_CFLAGS)	\
      8      1.1  christos 	$(LIBUV_CFLAGS)		\
      9  1.1.1.2  christos 	-I$(top_srcdir)/lib/isc	\
     10  1.1.1.2  christos 	-I$(top_srcdir)/lib/dns
     11      1.1  christos 
     12      1.1  christos LDADD +=			\
     13      1.1  christos 	$(LIBISC_LIBS)		\
     14      1.1  christos 	$(LIBDNS_LIBS)		\
     15      1.1  christos 	$(LIBNS_LIBS)
     16      1.1  christos 
     17  1.1.1.2  christos noinst_LTLIBRARIES = libtest.la
     18      1.1  christos 
     19      1.1  christos libtest_la_SOURCES =			\
     20      1.1  christos 	../include/tests/isc.h		\
     21      1.1  christos 	../include/tests/ns.h		\
     22  1.1.1.2  christos 	../include/tests/qp.h		\
     23      1.1  christos 	isc.c				\
     24  1.1.1.2  christos 	ns.c				\
     25  1.1.1.2  christos 	qp.c
     26  1.1.1.2  christos if HAVE_CMOCKA
     27  1.1.1.2  christos libtest_la_SOURCES +=			\
     28  1.1.1.2  christos 	../include/tests/dns.h		\
     29  1.1.1.2  christos         dns.c
     30  1.1.1.2  christos endif HAVE_CMOCKA
     31      1.1  christos 
     32      1.1  christos include $(top_srcdir)/Makefile.tests
     33