diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/modules/netgraph/atm/Makefile | 5 | ||||
-rw-r--r-- | sys/modules/netgraph/atm/atmbase/Makefile | 16 | ||||
-rw-r--r-- | sys/modules/netgraph/atm/sscfu/Makefile | 14 | ||||
-rw-r--r-- | sys/modules/netgraph/atm/sscop/Makefile | 13 |
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> |