mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-24 02:10:30 -05:00
- Use separate paths for tests results and test script - For tarball tests include the conversion script in the `make dist`
38 lines
572 B
Makefile
38 lines
572 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
EXTRA_DIST = convert-trs-to-junit.py
|
|
|
|
SUBDIRS = system
|
|
|
|
noinst_PROGRAMS = \
|
|
test_client \
|
|
test_server \
|
|
wire_test
|
|
|
|
AM_CFLAGS += \
|
|
$(TEST_CFLAGS)
|
|
|
|
test_client_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBISC_CFLAGS)
|
|
|
|
test_client_LDADD = \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS)
|
|
|
|
test_server_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBISC_CFLAGS)
|
|
|
|
test_server_LDADD = \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS)
|
|
|
|
wire_test_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS)
|
|
|
|
wire_test_LDADD = \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS)
|