diff options
| author | Roman Kurakin <rik@FreeBSD.org> | 2006-01-29 22:10:54 +0000 |
|---|---|---|
| committer | Roman Kurakin <rik@FreeBSD.org> | 2006-01-29 22:10:54 +0000 |
| commit | dfd1ff19b450cbd7a04cc7d9b27bbb6b6908b32f (patch) | |
| tree | ef59003eebc9f43e5a96554b94b1f94a97b48fd3 /sys/modules/ce | |
| parent | 439635c43e854189abda366fad453946745c89dc (diff) | |
Notes
Diffstat (limited to 'sys/modules/ce')
| -rw-r--r-- | sys/modules/ce/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sys/modules/ce/Makefile b/sys/modules/ce/Makefile new file mode 100644 index 000000000000..190a3f0bbc88 --- /dev/null +++ b/sys/modules/ce/Makefile @@ -0,0 +1,29 @@ +# $Cronyx: sys.modules.ce.Makefile,v 1.2 2005/04/23 20:10:22 rik Exp $ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/ce +KMOD = if_ce +SRCS = if_ce.c ceddk.c tau32-ddk.c +SRCS += opt_netgraph.h opt_ng_cronyx.h device_if.h bus_if.h \ + pci_if.h +NO_MAN= + +.if !defined(KERNBUILDDIR) +PROTOS?= -DINET +NG_CRONYX?= 0 +NETGRAPH= ${NG_CRONYX} + +CFLAGS+= ${PROTOS} + +.if ${NETGRAPH} != 0 +opt_netgraph.h: + echo "#define NETGRAPH ${NETGRAPH}" > opt_netgraph.h +.endif + +.if ${NG_CRONYX} != 0 +opt_ng_cronyx.h: + echo "#define NETGRAPH_CRONYX 1" > opt_ng_cronyx.h +.endif +.endif + +.include <bsd.kmod.mk> |
