mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05: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
17 lines
333 B
Makefile
17 lines
333 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <harti@freebsd.org>
|
|
#
|
|
|
|
LIBBASE= ${SRCTOP}/sys/contrib/ngatm
|
|
|
|
.PATH: ${SRCTOP}/sys/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} -DCCATM_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|