c15882f091
which means that the NFSCLIENT and NFSSERVER kernel options will no longer work. This commit only removes the kernel components. Removal of unused code in the user utilities will be done later. This commit does not include an addition to UPDATING, but that will be committed in a few minutes. Discussed on: freebsd-fs
27 lines
480 B
Makefile
27 lines
480 B
Makefile
# $FreeBSD$
|
|
|
|
.include "Makefile.inc"
|
|
|
|
SUBDIR= dtmalloc \
|
|
dtnfscl \
|
|
dtrace \
|
|
dtraceall \
|
|
dtrace_test \
|
|
lockstat \
|
|
profile \
|
|
prototype \
|
|
sdt \
|
|
systrace
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
|
|
SUBDIR+= fasttrap fbt systrace_linux32
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "powerpc"
|
|
SUBDIR+= fbt fasttrap
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_ARCH} == "powerpc64"
|
|
SUBDIR+= systrace_freebsd32
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|