30 lines
816 B
Makefile
30 lines
816 B
Makefile
# $NetBSD: Makefile.inc,v 1.20 2006/05/11 23:16:30 mrg Exp $
|
|
|
|
WARNS?= 1
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
DIST= ${NETBSDSRCDIR}/dist/dhcp
|
|
.PATH: ${DIST}/${DHCPSRCDIR}
|
|
|
|
COBJDIR!=cd $(.CURDIR)/../common && ${PRINTOBJDIR}
|
|
OMOBJDIR!=cd $(.CURDIR)/../omapip && ${PRINTOBJDIR}
|
|
MROBJDIR!=cd $(.CURDIR)/../minires && ${PRINTOBJDIR}
|
|
DSTOBJDIR!=cd $(.CURDIR)/../dst && ${PRINTOBJDIR}
|
|
|
|
.if ${HAVE_GCC} == 4
|
|
COPTS+= -fno-strict-aliasing
|
|
.endif
|
|
|
|
CPPFLAGS+= -I${DIST} -I${DIST}/includes -Wno-unused
|
|
LDADD+= ${COBJDIR}/libdhcp.a ${MROBJDIR}/libminires.a
|
|
LDADD+= ${OMOBJDIR}/libomapi.a ${DSTOBJDIR}/libdst.a
|
|
LDADD+= -lipsec
|
|
DPADD+= ${COBJDIR}/libdhcp.a ${MROBJDIR}/libminires.a
|
|
DPADD+= ${OMOBJDIR}/libomapi.a ${DSTOBJDIR}/libdst.a
|
|
DPADD+= ${LIBIPSEC}
|
|
|
|
.if exists(${.CURDIR}/../../Makefile.inc)
|
|
.include "${.CURDIR}/../../Makefile.inc"
|
|
.endif
|