e1fe3dba5c
http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
30 lines
610 B
Makefile
30 lines
610 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
BIND_DIR= ${.CURDIR}/../../../contrib/bind9
|
|
LIB_BIND_REL= ..
|
|
LIB_BIND_DIR= ${.CURDIR}/${LIB_BIND_REL}
|
|
SRCDIR= ${BIND_DIR}/lib/isccfg
|
|
|
|
.include "${LIB_BIND_DIR}/config.mk"
|
|
|
|
LIB= isccfg
|
|
|
|
.PATH: ${SRCDIR}
|
|
SRCS= log.c namedconf.c parser.c version.c
|
|
|
|
CFLAGS+= -I${SRCDIR}/include -I${.CURDIR}
|
|
|
|
.if ${MK_BIND_LIBS} != "no"
|
|
INCS= ${SRCDIR}/include/isccfg/cfg.h \
|
|
${SRCDIR}/include/isccfg/grammar.h \
|
|
${SRCDIR}/include/isccfg/log.h \
|
|
${SRCDIR}/include/isccfg/namedconf.h \
|
|
${SRCDIR}/include/isccfg/version.h
|
|
|
|
INCSDIR= ${INCLUDEDIR}/isccfg
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|