ed70dde057
message encoding and decoding stuff into the base module. All of this is accessed by several of the NgATM modules and putting this into atmbase reduceds the memory footprint.
19 lines
371 B
Makefile
19 lines
371 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <harti@freebsd.org>
|
|
#
|
|
|
|
LIBBASE= ${.CURDIR}/../../../../contrib/ngatm
|
|
|
|
.PATH: ${.CURDIR}/../../../../netgraph/atm
|
|
.PATH: ${LIBBASE}/netnatm/misc
|
|
.PATH: ${LIBBASE}/netnatm/msg
|
|
|
|
KMOD= ngatmbase
|
|
SRCS= ngatmbase.c unimsg_common.c straddr.c \
|
|
traffic.c uni_ie.c uni_msg.c
|
|
|
|
CFLAGS+= -I${LIBBASE} # -DNGATM_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|