22 lines
292 B
Makefile
22 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>
|