90e655ea4e
These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# $FreeBSD$
|
|
|
|
USE_LIBBIND= true
|
|
.include "${.CURDIR}/Makefile.inc"
|
|
|
|
.PATH: ${BIND_DIR}/bin/named
|
|
.PATH: ${BIND_DIR}/doc/man
|
|
|
|
PROG= named
|
|
MAN= named.conf.5 named.8 named-bootconf.8 nsupdate.8
|
|
SRCS= tmp_version.c pathnames.h \
|
|
db_dump.c db_load.c db_lookup.c db_save.c db_update.c \
|
|
db_glue.c db_ixfr.c db_sec.c db_tsig.c \
|
|
ns_parser.y ns_lexer.c ns_parseutil.c ns_ctl.c \
|
|
ns_forw.c ns_init.c ns_main.c ns_maint.c ns_req.c \
|
|
ns_resp.c ns_stats.c ns_ncache.c ns_xfr.c ns_glue.c \
|
|
ns_udp.c ns_config.c ns_update.c ns_ixfr.c ns_signal.c \
|
|
ns_sort.c ns_notify.c
|
|
|
|
.if exists(${.OBJDIR}/../../lib/libisc)
|
|
LIBISCDIR:= ${.OBJDIR}/../../lib/libisc
|
|
.else
|
|
LIBISCDIR!= cd ${.CURDIR}/../../lib/libisc; make -V .OBJDIR
|
|
.endif
|
|
LIBISC:= ${LIBISCDIR}/libisc.a
|
|
|
|
DPADD+= ${LIBISC}
|
|
LDADD+= ${LIBISC}
|
|
|
|
DOCDIR= /usr/share/doc/bind
|
|
HTMLS= acl.html address_list.html comments.html config.html controls.html \
|
|
docdef.html example.html include.html index.html key.html \
|
|
logging.html master.html options.html server.html trusted-keys.html \
|
|
zone.html
|
|
FILES= DynamicUpdate FAQ.1of2 FAQ.2of2 style.txt
|
|
|
|
|
|
beforeinstall:
|
|
.for file in ${HTMLS}
|
|
cd ${BIND_DIR}/doc/html ; \
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${file} \
|
|
${DESTDIR}${DOCDIR}/html
|
|
.endfor
|
|
.for file in ${FILES}
|
|
cd ${BIND_DIR}/doc/misc ; \
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${file} \
|
|
${DESTDIR}${DOCDIR}/misc
|
|
.endfor
|
|
|
|
.include <bsd.prog.mk>
|