From cc7174a82d7ded9812a0924918ae3a743f9ce9d9 Mon Sep 17 00:00:00 2001 From: harti Date: Fri, 24 Oct 2003 07:42:08 +0000 Subject: Module build infrastructure for the NgATM SAA layer. --- sys/modules/netgraph/atm/Makefile | 5 ++++- sys/modules/netgraph/atm/atmbase/Makefile | 16 ++++++++++++++++ sys/modules/netgraph/atm/sscfu/Makefile | 14 ++++++++++++++ sys/modules/netgraph/atm/sscop/Makefile | 13 +++++++++++++ 4 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 sys/modules/netgraph/atm/atmbase/Makefile create mode 100644 sys/modules/netgraph/atm/sscfu/Makefile create mode 100644 sys/modules/netgraph/atm/sscop/Makefile (limited to 'sys/modules/netgraph') 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 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 +# + +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 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 +# + +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 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 + +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 -- cgit v1.1