mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
21 lines
292 B
Makefile
21 lines
292 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
.include "Makefile.inc"
|
|
|
|
SUBDIR= dtmalloc \
|
|
dtrace \
|
|
dtraceall \
|
|
dtrace_test \
|
|
profile \
|
|
prototype \
|
|
sdt \
|
|
systrace
|
|
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
SUBDIR+= fbt
|
|
.elif ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+= fbt
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|