blob: 1ad4bb6b60798a343a3c18829db7b5ef76132377 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $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>
|