mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 08:50:22 -05:00
These makefiles work when building in the sys/modules directory, but
not with the objdir stuff that buildkernel uses. This is because they
used -I../../../blah rather than -I${.CURDIR}/../../../blah.
# I didn't fix the abuse of CFLAGS to specify -g since I wanted the
# barest minimal change since we're in a code freeze.
Approved by: make buildkernel...
Hat for armchair anarchists: core member fixing src tree damage
16 lines
483 B
Makefile
16 lines
483 B
Makefile
# $Id: Makefile,v 1.4 2002/09/04 21:38:38 max Exp $
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../../../netgraph/bluetooth/l2cap
|
|
|
|
CFLAGS+= -g -I${.CURDIR}/../../../../netgraph/bluetooth/include \
|
|
-I${.CURDIR}/../../../../netgraph/bluetooth/l2cap \
|
|
-DINVARIANTS=1 -DINVARIANT_SUPPORT=1 \
|
|
-DWITNESS=1 -DWITNESS_SKIPSPIN=1
|
|
|
|
KMOD= ng_l2cap
|
|
SRCS= ng_l2cap_main.c ng_l2cap_cmds.c ng_l2cap_evnt.c \
|
|
ng_l2cap_ulpi.c ng_l2cap_llpi.c ng_l2cap_misc.c
|
|
MAN4= ng_l2cap.4
|
|
|
|
.include <bsd.kmod.mk>
|