freebsd-dev/usr.sbin/named/Makefile
Jeroen Ruigrok van der Werven b54a8d8a2e Add static dependency on libisc.a to get isc_movefile() on which named
now depends.  This keeps named the same as before the import, that is: only
linking against libc dynamically, at a little space increase, which might
be due to the source code changes anyway.  Very neglectable space
difference.

Some people might dub it a hack.  It will do for now at least.
2001-01-28 23:21:00 +00:00

53 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
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}
MAN5= named.conf.5
MAN8= named.8 named-bootconf.8 nsupdate.8
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 dns-setup 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>