mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -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
18 lines
270 B
Makefile
18 lines
270 B
Makefile
# $FreeBSD$
|
|
|
|
SYSDIR?= ${SRCTOP}/sys
|
|
|
|
.PATH: ${SYSDIR}/cddl/dev/dtrace
|
|
|
|
KMOD= dtrace_test
|
|
SRCS= dtrace_test.c
|
|
|
|
SRCS+= vnode_if.h
|
|
|
|
CFLAGS+= -I${SYSDIR}
|
|
|
|
CFLAGS+= -D_KERNEL
|
|
|
|
.include <bsd.kmod.mk>
|
|
|
|
CFLAGS+= -include ${SYSDIR}/cddl/compat/opensolaris/sys/debug_compat.h
|