mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add the module build stuff for the ATM call control module.
This commit is contained in:
parent
a2931871f7
commit
4f6f019206
2 changed files with 18 additions and 0 deletions
|
|
@ -4,6 +4,7 @@ SUBDIR= \
|
|||
atm \
|
||||
atmbase \
|
||||
atmpif \
|
||||
ccatm \
|
||||
sscfu \
|
||||
sscop \
|
||||
uni
|
||||
|
|
|
|||
17
sys/modules/netgraph/atm/ccatm/Makefile
Normal file
17
sys/modules/netgraph/atm/ccatm/Makefile
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
# Author: Harti Brandt <harti@freebsd.org>
|
||||
#
|
||||
|
||||
LIBBASE= ${.CURDIR}/../../../../contrib/ngatm
|
||||
|
||||
.PATH: ${.CURDIR}/../../../../netgraph/atm/ccatm
|
||||
.PATH: ${LIBBASE}/netnatm/api
|
||||
|
||||
KMOD= ng_ccatm
|
||||
SRCS= ng_ccatm.c cc_conn.c cc_data.c cc_dump.c cc_port.c cc_sig.c \
|
||||
cc_user.c unisap.c
|
||||
|
||||
CFLAGS+= -I${LIBBASE} -I${LIBBASE}/netnatm/ccatm -DCCATM_DEBUG
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
Loading…
Reference in a new issue