mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 02:42:33 -05:00
76 lines
2 KiB
Makefile
76 lines
2 KiB
Makefile
# Copyright (C) 1999-2002, 2004, 2006-2010, 2012-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# $Id: Makefile.in,v 1.52 2010/12/24 23:47:05 tbox Exp $
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
@BIND9_MAKE_INCLUDES@
|
|
|
|
CINCLUDES = ${TEST_INCLUDES} ${DNS_INCLUDES} \
|
|
${ISC_INCLUDES} @DST_OPENSSL_INC@ @DST_GSSAPI_INC@
|
|
|
|
CDEFINES = @CRYPTO@ @USE_GSSAPI@
|
|
CWARNINGS =
|
|
|
|
DNSLIBS = ../../../lib/dns/libdns.@A@ @DNS_CRYPTO_LIBS@
|
|
ISCLIBS = ../../../lib/isc/libisc.@A@
|
|
|
|
DNSDEPLIBS = ../../../lib/dns/libdns.@A@
|
|
ISCDEPLIBS = ../../../lib/isc/libisc.@A@
|
|
|
|
DEPLIBS = ${DNSDEPLIBS} ${ISCDEPLIBS}
|
|
|
|
LIBS = ${DNSLIBS} ${ISCLIBS} @LIBS@
|
|
|
|
TLIB = ../../../lib/tests/libt_api.@A@
|
|
|
|
TARGETS = dst_test@EXEEXT@ t_dst@EXEEXT@ gsstest@EXEEXT@
|
|
|
|
SRCS = dst_test.c t_dst.c gsstest.c
|
|
|
|
@BIND9_MAKE_RULES@
|
|
|
|
dst_test@EXEEXT@: dst_test.@O@ ${DEPLIBS}
|
|
${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${CFLAGS} ${LDFLAGS} -o $@ \
|
|
dst_test.@O@ ${LIBS}
|
|
|
|
t_dst@EXEEXT@: t_dst.@O@ ${DEPLIBS} ${TLIB}
|
|
${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${CFLAGS} ${LDFLAGS} -o $@ \
|
|
t_dst.@O@ ${TLIB} ${LIBS}
|
|
|
|
gsstest@EXEEXT@: gsstest.@O@ ${DEPLIBS}
|
|
${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${CFLAGS} ${LDFLAGS} -o $@ \
|
|
gsstest.@O@ ${LIBS}
|
|
|
|
test: t_dst@EXEEXT@ randomfile
|
|
../../tools/genrandom@EXEEXT@ 100 randomfile
|
|
-@ ./t_dst@EXEEXT@ -q 1800 -a
|
|
|
|
randomfile:
|
|
../../tools/genrandom@EXEEXT@ 100 randomfile
|
|
|
|
clean distclean::
|
|
rm -f ${TARGETS} randomfile
|
|
|
|
distclean::
|
|
rm -f Kdh.+002+18602.key
|
|
rm -f Kdh.+002+18602.private
|
|
rm -f Kdh.+002+48957.key
|
|
rm -f Kdh.+002+48957.private
|
|
rm -f Ktest.+001+00002.key
|
|
rm -f Ktest.+001+54622.key
|
|
rm -f Ktest.+001+54622.private
|
|
rm -f Ktest.+003+23616.key
|
|
rm -f Ktest.+003+23616.private
|
|
rm -f Ktest.+003+49667.key
|
|
rm -f dst_2_data
|
|
rm -f t2_data_1
|
|
rm -f t2_data_2
|
|
rm -f t2_dsasig
|
|
rm -f t2_rsasig
|