File: Makefile.am

package info (click to toggle)
bind9 1%3A9.20.19-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,408 kB
  • sloc: ansic: 316,115; sh: 50,056; python: 23,954; perl: 3,062; makefile: 2,247
file content (32 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
include $(top_srcdir)/Makefile.top

AM_CPPFLAGS +=			\
	$(LIBISC_CFLAGS)	\
	$(LIBDNS_CFLAGS)	\
	$(LIBNS_CFLAGS)		\
	$(LIBURCU_CFLAGS)	\
	$(LIBUV_CFLAGS)		\
	-I$(top_srcdir)/lib/isc	\
	-I$(top_srcdir)/lib/dns

LDADD +=			\
	$(LIBISC_LIBS)		\
	$(LIBDNS_LIBS)		\
	$(LIBNS_LIBS)

noinst_LTLIBRARIES = libtest.la

libtest_la_SOURCES =			\
	../include/tests/isc.h		\
	../include/tests/ns.h		\
	../include/tests/qp.h		\
	isc.c				\
	ns.c				\
	qp.c
if HAVE_CMOCKA
libtest_la_SOURCES +=			\
	../include/tests/dns.h		\
        dns.c
endif HAVE_CMOCKA

include $(top_srcdir)/Makefile.tests