1# $Whistle: Makefile,v 1.1 1999/12/08 20:20:39 archie Exp $ 2# $FreeBSD$ 3 4KMOD= ng_mppc 5SRCS= ng_mppc.c opt_netgraph.h 6MAN8= ng_mppc.8 7KMODDEPS= netgraph 8 9NETGRAPH_MPPC_COMPRESSION?= 0 10NETGRAPH_MPPC_ENCRYPTION?= 1 11 12.if ${NETGRAPH_MPPC_COMPRESSION} > 0 13# XXX These files don't exist yet, but hopefully someday they will... 14.PATH: ${.CURDIR}/../../../net 15SRCS+= mppcc.c mppcd.c 16.endif 17 18.if ${NETGRAPH_MPPC_ENCRYPTION} > 0 19.PATH: ${.CURDIR}/../../../crypto 20.PATH: ${.CURDIR}/../../../crypto/rc4 21SRCS+= rc4.c sha1.c 22.endif 23 24opt_netgraph.h: 25 touch ${.TARGET} 26.if ${NETGRAPH_MPPC_COMPRESSION} > 0 27 echo "#define NETGRAPH_MPPC_COMPRESSION 1" >> ${.TARGET} 28.endif 29.if ${NETGRAPH_MPPC_ENCRYPTION} > 0 30 echo "#define NETGRAPH_MPPC_ENCRYPTION 1" >> ${.TARGET} 31.endif 32 33.include <bsd.kmod.mk> 34