Module build infrastructure for the NgATM SAA layer.

This commit is contained in:
Hartmut Brandt 2003-10-24 07:42:08 +00:00
parent 98ef351f12
commit 0376020649
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121462
4 changed files with 47 additions and 1 deletions

View File

@ -2,7 +2,10 @@
SUBDIR= \
atm \
atmpif
atmbase \
atmpif \
sscfu \
sscop
.include <bsd.subdir.mk>

View File

@ -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>

View File

@ -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>

View File

@ -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>