mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 03:13:02 -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
14 lines
271 B
Makefile
14 lines
271 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <harti@freebsd.org>
|
|
#
|
|
|
|
LIBBASE= ${SRCTOP}/sys/contrib/ngatm
|
|
|
|
.PATH: ${SRCTOP}/sys/netgraph/atm/sscfu ${LIBBASE}/netnatm/saal
|
|
|
|
KMOD= ng_sscfu
|
|
SRCS= ng_sscfu.c saal_sscfu.c
|
|
CFLAGS+= -I${LIBBASE} # -DSSCFU_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|