Home | History | Annotate | Line # | Download | only in bench
      1  1.1  christos include $(top_srcdir)/Makefile.top
      2  1.1  christos 
      3  1.1  christos AM_CFLAGS += -Wno-vla
      4  1.1  christos 
      5  1.1  christos AM_CPPFLAGS +=				\
      6  1.1  christos 	$(LIBUV_CFLAGS)			\
      7  1.1  christos 	$(LIBURCU_CFLAGS)		\
      8  1.1  christos 	$(LIBISC_CFLAGS)		\
      9  1.1  christos 	$(LIBDNS_CFLAGS)		\
     10  1.1  christos 	-I$(top_srcdir)/fuzz		\
     11  1.1  christos 	-I$(top_srcdir)/lib/dns		\
     12  1.1  christos 	-I$(top_srcdir)/lib/isc		\
     13  1.1  christos 	-I$(top_srcdir)/tests/include
     14  1.1  christos 
     15  1.1  christos LDADD +=				\
     16  1.1  christos 	$(LIBUV_LIBS)			\
     17  1.1  christos 	$(LIBURCU_LIBS)			\
     18  1.1  christos 	$(LIBISC_LIBS)			\
     19  1.1  christos 	$(LIBDNS_LIBS)			\
     20  1.1  christos 	$(top_builddir)/tests/libtest/libtest.la
     21  1.1  christos 
     22  1.1  christos noinst_PROGRAMS =			\
     23  1.1  christos 	ascii				\
     24  1.1  christos 	compress			\
     25  1.1  christos 	dns_name_fromwire		\
     26  1.1  christos 	iterated_hash			\
     27  1.1  christos 	load-names			\
     28  1.1  christos 	qp-dump				\
     29  1.1  christos 	qplookups			\
     30  1.1  christos 	qpmulti				\
     31  1.1  christos 	siphash
     32  1.1  christos 
     33  1.1  christos dns_name_fromwire_SOURCES =		\
     34  1.1  christos 	$(top_builddir)/fuzz/old.c	\
     35  1.1  christos 	$(top_builddir)/fuzz/old.h	\
     36  1.1  christos 	dns_name_fromwire.c
     37