summaryrefslogtreecommitdiff
path: root/sys/modules/cx
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2003-12-03 07:29:38 +0000
committerWarner Losh <imp@FreeBSD.org>2003-12-03 07:29:38 +0000
commit88afb90f3c00705162333f835601febe31c7b8cf (patch)
tree87af7efeab367d034ff04731cacb4fe3c29d84fc /sys/modules/cx
parent3554ecf0320f8c3a374ac64fa10aee0927a3ef0e (diff)
Notes
Diffstat (limited to 'sys/modules/cx')
-rw-r--r--sys/modules/cx/Makefile39
1 files changed, 39 insertions, 0 deletions
diff --git a/sys/modules/cx/Makefile b/sys/modules/cx/Makefile
new file mode 100644
index 000000000000..ddb4dccbb4fb
--- /dev/null
+++ b/sys/modules/cx/Makefile
@@ -0,0 +1,39 @@
+# 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 bpf.h \
+ sppp.h device_if.h bus_if.h isa_if.h
+NOMAN=
+
+NBPF?= 0
+PROTOS?= -DINET
+NG_CRONYX?= 0
+NETGRAPH= ${NG_CRONYX}
+
+
+CFLAGS+= ${PROTOS}
+CLEANFILES+= opt_ng_cronyx.h opt_netgraph.h bpf.h cxddk.c csigma.c sppp.h
+
+opt_netgraph.h:
+ echo "#define NETGRAPH $(NETGRAPH)" > opt_netgraph.h
+
+opt_ng_cronyx.h:
+.if ${NG_CRONYX} != 0
+ echo "#define NETGRAPH_CRONYX 1" > opt_ng_cronyx.h
+.else
+ echo "" > opt_ng_cronyx.h
+.endif
+
+sppp.h:
+.if ${NG_CRONYX} == 0
+ echo "#define NSPPP 1" > sppp.h
+.else
+ echo "#define NSPPP 0" > sppp.h
+.endif
+
+bpf.h:
+ echo "#define NBPF ${NBPF}" > bpf.h
+
+.include <bsd.kmod.mk>