bind9/bin/tests/Makefile.am
Štěpán Balážik 65b779661d Rename Python files to adhere to the snake-case convention
(cherry picked from commit 50ed74197c)
2026-02-25 12:10:20 +00:00

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)