Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / sys / netgraph / mppc / Makefile
1 # $Whistle: Makefile,v 1.1 1999/12/08 20:20:39 archie Exp $
2 # $FreeBSD: src/sys/modules/netgraph/mppc/Makefile,v 1.3.2.4 2001/12/21 09:00:49 ru Exp $
3 # $DragonFly: src/sys/netgraph/mppc/Makefile,v 1.2 2003/06/17 04:28:46 dillon Exp $
4
5 KMOD=           ng_mppc
6 SRCS=           ng_mppc.c opt_netgraph.h
7 KMODDEPS=       netgraph
8
9 NETGRAPH_MPPC_COMPRESSION?=     0
10 NETGRAPH_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
15 SRCS+=          mppcc.c mppcd.c
16 .endif
17
18 .if ${NETGRAPH_MPPC_ENCRYPTION} > 0
19 .PATH:          ${.CURDIR}/../../../crypto
20 .PATH:          ${.CURDIR}/../../../crypto/rc4
21 SRCS+=          rc4.c sha1.c
22 .endif
23
24 opt_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>