mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 16:48:36 -05:00
25 lines
495 B
Makefile
25 lines
495 B
Makefile
# $FreeBSD$
|
|
|
|
BIND_DIR= ${.CURDIR}/../../../contrib/bind9
|
|
LIB_BIND_REL= ..
|
|
LIB_BIND_DIR= ${.CURDIR}/${LIB_BIND_REL}
|
|
SRCDIR= ${BIND_DIR}/lib/bind9
|
|
|
|
.include "${LIB_BIND_DIR}/config.mk"
|
|
|
|
LIB= bind9
|
|
|
|
.PATH: ${SRCDIR}
|
|
SRCS= check.c getaddresses.c version.c
|
|
|
|
CFLAGS+= -I${SRCDIR}/include
|
|
|
|
.if defined(WITH_BIND_LIBS)
|
|
INCS= ${SRCDIR}/include/bind9/check.h \
|
|
${SRCDIR}/include/bind9/getaddresses.h \
|
|
${SRCDIR}/include/bind9/version.h
|
|
|
|
INCSDIR= ${INCLUDEDIR}/bind9
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|