summaryrefslogtreecommitdiffstats
path: root/sys/modules/netgraph
diff options
context:
space:
mode:
authorharti <harti@FreeBSD.org>2003-10-24 07:42:08 +0000
committerharti <harti@FreeBSD.org>2003-10-24 07:42:08 +0000
commitcc7174a82d7ded9812a0924918ae3a743f9ce9d9 (patch)
treedc0ea61c94ca963cbe32c9ad306e74ce09cdbb06 /sys/modules/netgraph
parente43801eab1f3da0b4a906ce7f56652cc862468cf (diff)
downloadFreeBSD-src-cc7174a82d7ded9812a0924918ae3a743f9ce9d9.zip
FreeBSD-src-cc7174a82d7ded9812a0924918ae3a743f9ce9d9.tar.gz
Module build infrastructure for the NgATM SAA layer.
Diffstat (limited to 'sys/modules/netgraph')
-rw-r--r--sys/modules/netgraph/atm/Makefile5
-rw-r--r--sys/modules/netgraph/atm/atmbase/Makefile16
-rw-r--r--sys/modules/netgraph/atm/sscfu/Makefile14
-rw-r--r--sys/modules/netgraph/atm/sscop/Makefile13
4 files changed, 47 insertions, 1 deletions
diff --git a/sys/modules/netgraph/atm/Makefile b/sys/modules/netgraph/atm/Makefile
index c0fe9fe..2297bd5 100644
--- a/sys/modules/netgraph/atm/Makefile
+++ b/sys/modules/netgraph/atm/Makefile
@@ -2,7 +2,10 @@
SUBDIR= \
atm \
- atmpif
+ atmbase \
+ atmpif \
+ sscfu \
+ sscop
.include <bsd.subdir.mk>
diff --git a/sys/modules/netgraph/atm/atmbase/Makefile b/sys/modules/netgraph/atm/atmbase/Makefile
new file mode 100644
index 0000000..98af2e8
--- /dev/null
+++ b/sys/modules/netgraph/atm/atmbase/Makefile
@@ -0,0 +1,16 @@
+# $FreeBSD$
+#
+# Author: Harti Brandt <harti@freebsd.org>
+#
+
+LIBBASE= ${.CURDIR}/../../../../contrib/ngatm
+
+.PATH: ${.CURDIR}/../../../../netgraph/atm
+.PATH: ${LIBBASE}/netnatm/misc
+
+KMOD= ngatmbase
+SRCS= ngatmbase.c unimsg_common.c
+
+CFLAGS+= -I${LIBBASE} # -DNGATM_DEBUG
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/netgraph/atm/sscfu/Makefile b/sys/modules/netgraph/atm/sscfu/Makefile
new file mode 100644
index 0000000..278159f
--- /dev/null
+++ b/sys/modules/netgraph/atm/sscfu/Makefile
@@ -0,0 +1,14 @@
+# $FreeBSD$
+#
+# Author: Harti Brandt <harti@freebsd.org>
+#
+
+LIBBASE= ${.CURDIR}/../../../../contrib/ngatm
+
+.PATH: ${.CURDIR}/../../../../netgraph/atm/sscfu ${LIBBASE}/netnatm/saal
+
+KMOD= ng_sscfu
+SRCS= ng_sscfu.c saal_sscfu.c
+CFLAGS+= -I${LIBBASE} # -DSSCFU_DEBUG
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/netgraph/atm/sscop/Makefile b/sys/modules/netgraph/atm/sscop/Makefile
new file mode 100644
index 0000000..b9334dd
--- /dev/null
+++ b/sys/modules/netgraph/atm/sscop/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+#
+# Author: Harti Brandt <harti@freebsd.org>
+
+LIBBASE= ${.CURDIR}/../../../../contrib/ngatm
+
+.PATH: ${.CURDIR}/../../../../netgraph/atm/sscop ${LIBBASE}/netnatm/saal
+
+KMOD= ng_sscop
+SRCS= ng_sscop.c saal_sscop.c
+CFLAGS+= -I${LIBBASE} # -DSSCOP_DEBUG
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud