mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-24 10:21:10 -05:00
A number of unit tests needed to be told where to find their libraries and matching headers.
20 lines
341 B
Makefile
20 lines
341 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBISCCFG_CFLAGS) \
|
|
$(LIBUV_CFLAGS) \
|
|
-I$(top_srcdir)/lib/isc
|
|
|
|
LDADD += \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISCCFG_LIBS) \
|
|
$(LIBUV_LIBS)
|
|
|
|
check_PROGRAMS = \
|
|
duration_test \
|
|
parser_test
|
|
|
|
include $(top_srcdir)/Makefile.tests
|