mirror of
https://github.com/opnsense/src.git
synced 2026-04-09 11:27:18 -04:00
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
18 lines
353 B
Makefile
18 lines
353 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <harti@freebsd.org>
|
|
#
|
|
|
|
LIBBASE= ${SRCTOP}/sys/contrib/ngatm
|
|
|
|
.PATH: ${SRCTOP}/sys/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>
|