mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 16:48:36 -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
13 lines
269 B
Makefile
13 lines
269 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <harti@freebsd.org>
|
|
|
|
LIBBASE= ${SRCTOP}/sys/contrib/ngatm
|
|
|
|
.PATH: ${SRCTOP}/sys/netgraph/atm/sscop ${LIBBASE}/netnatm/saal
|
|
|
|
KMOD= ng_sscop
|
|
SRCS= ng_sscop.c saal_sscop.c
|
|
CFLAGS+= -I${LIBBASE} # -DSSCOP_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|