diff options
Diffstat (limited to 'sys/modules/netgraph/mppc/Makefile')
-rw-r--r-- | sys/modules/netgraph/mppc/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/modules/netgraph/mppc/Makefile b/sys/modules/netgraph/mppc/Makefile index ebd2f82..84086d5 100644 --- a/sys/modules/netgraph/mppc/Makefile +++ b/sys/modules/netgraph/mppc/Makefile @@ -1,8 +1,8 @@ # $Whistle: Makefile,v 1.1 1999/12/08 20:20:39 archie Exp $ # $FreeBSD$ -KMOD= ng_mppc -SRCS= ng_mppc.c opt_netgraph.h +KMOD= ng_mppc +SRCS= ng_mppc.c opt_netgraph.h NOMAN= NETGRAPH_MPPC_COMPRESSION?= 0 @@ -10,14 +10,14 @@ NETGRAPH_MPPC_ENCRYPTION?= 1 .if ${NETGRAPH_MPPC_COMPRESSION} > 0 # XXX These files don't exist yet, but hopefully someday they will... -.PATH: ${.CURDIR}/../../../net -SRCS+= mppcc.c mppcd.c +.PATH: ${.CURDIR}/../../../net +SRCS+= mppcc.c mppcd.c .endif .if ${NETGRAPH_MPPC_ENCRYPTION} > 0 -.PATH: ${.CURDIR}/../../../crypto -.PATH: ${.CURDIR}/../../../crypto/rc4 -SRCS+= rc4.c sha1.c +.PATH: ${.CURDIR}/../../../crypto +.PATH: ${.CURDIR}/../../../crypto/rc4 +SRCS+= rc4.c sha1.c .endif opt_netgraph.h: |