mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-28 20:41:18 -05:00
GitLab CI needs to know about some environment variables that will tell where OpenSSL and SoftHSM2 is installed. This is done in the image, making the prepare-softhsm2.sh script obsolete. The SoftHSM2 module location is system specific.
33 lines
500 B
Makefile
33 lines
500 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
SUBDIRS = system
|
|
|
|
noinst_PROGRAMS = \
|
|
test_client \
|
|
test_server \
|
|
wire_test
|
|
|
|
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)
|