blob: e4f624f5f58030142be9f7e3a7dc06a9263920ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $FreeBSD: src/sys/modules/netgraph/atm/uni/Makefile,v 1.1.30.1 2009/04/15 03:14:26 kensmith Exp $
#
# Author: Harti Brandt <harti@freebsd.org>
#
LIBBASE= ${.CURDIR}/../../../../contrib/ngatm
.PATH: ${.CURDIR}/../../../../netgraph/atm/uni
.PATH: ${LIBBASE}/netnatm/sig
KMOD= ng_uni
SRCS= ng_uni.c sig_call.c sig_uni.c sig_party.c sig_coord.c \
sig_reset.c sig_verify.c sig_print.c sig_unimsgcpy.c
CFLAGS+= -I${LIBBASE} -I${LIBBASE}/netnatm/sig # -DUNI_DEBUG
.include <bsd.kmod.mk>
|