mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-22 17:30:44 -05:00
The libtest.la headers were installed in very weird place, in fact, we
don't need to list them in the HEADERS variable, listing them in SOURCES
is enough for autotools to figure out how to compile the convenience
library.
(cherry picked from commit 714fe2f617)
25 lines
433 B
Makefile
25 lines
433 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBNS_CFLAGS) \
|
|
$(LIBUV_CFLAGS) \
|
|
-I$(top_srcdir)/lib/isc
|
|
|
|
LDADD += \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBNS_LIBS)
|
|
|
|
check_LTLIBRARIES = libtest.la
|
|
|
|
libtest_la_SOURCES = \
|
|
../include/tests/dns.h \
|
|
../include/tests/isc.h \
|
|
../include/tests/ns.h \
|
|
dns.c \
|
|
isc.c \
|
|
ns.c
|
|
|
|
include $(top_srcdir)/Makefile.tests
|