diff options
Diffstat (limited to 'sys/modules/cx')
| -rw-r--r-- | sys/modules/cx/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sys/modules/cx/Makefile b/sys/modules/cx/Makefile new file mode 100644 index 000000000000..937937075a8d --- /dev/null +++ b/sys/modules/cx/Makefile @@ -0,0 +1,27 @@ +# Cronyx Id: sys.modules.cx.Makefile,v 1.1.2.2 2003/01/21 15:15:49 rik Exp $ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/cx +KMOD= if_cx +SRCS= if_cx.c cxddk.c csigma.c opt_netgraph.h opt_ng_cronyx.h \ + device_if.h bus_if.h isa_if.h + +.if !defined(KERNBUILDDIR) +PROTOS?= -DINET +NG_CRONYX?= 0 +NETGRAPH= ${NG_CRONYX} + +CFLAGS+= ${PROTOS} + +.if ${NETGRAPH} != 0 +opt_netgraph.h: + echo "#define NETGRAPH $(NETGRAPH)" > ${.TARGET} +.endif + +.if ${NG_CRONYX} != 0 +opt_ng_cronyx.h: + echo "#define NETGRAPH_CRONYX 1" > ${.TARGET} +.endif +.endif + +.include <bsd.kmod.mk> |
