mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 19:04:57 -05:00
This commit converts the license handling to adhere to the REUSE
specification. It specifically:
1. Adds used licnses to LICENSES/ directory
2. Add "isc" template for adding the copyright boilerplate
3. Changes all source files to include copyright and SPDX license
header, this includes all the C sources, documentation, zone files,
configuration files. There are notes in the doc/dev/copyrights file
on how to add correct headers to the new files.
4. Handle the rest that can't be modified via .reuse/dep5 file. The
binary (or otherwise unmodifiable) files could have license places
next to them in <foo>.license file, but this would lead to cluttered
repository and most of the files handled in the .reuse/dep5 file are
system test files.
(cherry picked from commit 58bd26b6cf)
87 lines
2.4 KiB
Makefile
87 lines
2.4 KiB
Makefile
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
#
|
|
# 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 https://mozilla.org/MPL/2.0/.
|
|
#
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
# information regarding copyright ownership.
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
@BIND9_MAKE_INCLUDES@
|
|
|
|
CINCLUDES = ${DNS_INCLUDES} ${ISC_INCLUDES} ${ISCCFG_INCLUDES} \
|
|
${OPENSSL_CFLAGS}
|
|
|
|
CDEFINES =
|
|
CWARNINGS =
|
|
BACKTRACECFLAGS = @BACKTRACECFLAGS@
|
|
|
|
DNSLIBS = ../../lib/dns/libdns.@A@ @NO_LIBTOOL_DNSLIBS@
|
|
ISCLIBS = ../../lib/isc/libisc.@A@ @NO_LIBTOOL_ISCLIBS@
|
|
ISCNOSYMLIBS = ../../lib/isc/libisc-nosymtbl.@A@ @NO_LIBTOOL_ISCLIBS
|
|
ISCCFGLIBS = ../../lib/isccfg/libisccfg.@A@
|
|
|
|
DNSDEPLIBS = ../../lib/dns/libdns.@A@
|
|
ISCDEPLIBS = ../../lib/isc/libisc.@A@
|
|
ISCDEPNOSYMLIBS = ../../lib/isc/libisc-nosymtbl.@A@
|
|
ISCCFGDEPLIBS = ../../lib/isccfg/libisccfg.@A@
|
|
|
|
LIBS = @LIBS@
|
|
|
|
SUBDIRS = system @PKCS11_TOOLS@
|
|
TESTDIRS = system
|
|
|
|
# Test programs that are built by default:
|
|
# cfg_test is needed for regenerating doc/misc/options
|
|
# makejournal is needed by system tests
|
|
# wire_test is needed for fuzz testing
|
|
# other opptional test programs have been moved to ./optional
|
|
|
|
# Alphabetically
|
|
XTARGETS = all_tests
|
|
TARGETS = cfg_test@EXEEXT@ makejournal@EXEEXT@ \
|
|
wire_test@EXEEXT@ @XTARGETS@
|
|
|
|
SRCS = cfg_test.c makejournal.c wire_test.c
|
|
|
|
@BIND9_MAKE_RULES@
|
|
|
|
.NOTPARALLEL:
|
|
|
|
.PHONY:
|
|
all_tests:
|
|
echo "making depend in `pwd`/optional"; \
|
|
(cd optional; ${MAKE} ${MAKEDEFS} DESTDIR="${DESTDIR}" $@)
|
|
|
|
wire_test@EXEEXT@: wire_test.@O@ ${ISCDEPLIBS} ${DNSDEPLIBS}
|
|
${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${CFLAGS} ${LDFLAGS} -o $@ wire_test.@O@ \
|
|
${DNSLIBS} ${ISCLIBS} ${LIBS}
|
|
|
|
cfg_test@EXEEXT@: cfg_test.@O@ ${ISCCFGDEPLIBS} ${ISCDEPLIBS}
|
|
${LIBTOOL_MODE_LINK} ${CC} ${CFLAGS} ${LDFLAGS} -o $@ cfg_test.@O@ \
|
|
${ISCCFGLIBS} ${DNSLIBS} ${ISCLIBS} ${LIBS}
|
|
|
|
makejournal@EXEEXT@: makejournal.@O@ ${ISCDEPLIBS} ${DNSDEPLIBS}
|
|
${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${CFLAGS} ${LDFLAGS} -o $@ makejournal.@O@ \
|
|
${DNSLIBS} ${ISCLIBS} ${LIBS}
|
|
|
|
distclean::
|
|
rm -f headerdep_test.sh
|
|
|
|
clean distclean::
|
|
rm -f ${TARGETS}
|
|
( cd optional; $(MAKE) $@)
|
|
|
|
check: test
|
|
|
|
test:
|
|
@for dir in $(TESTDIRS) ;\
|
|
do \
|
|
( cd $$dir; $(MAKE) test ) ;\
|
|
done
|