freebsd-dev/sys/Makefile
Peter Wemm 34da59975b Exclude sys/boot for amd64. There are still toolchain issues to deal
with.  In theory, gcc -m32 should work, but for now, do not tempt fate.

Approved by:	re (scottl)
2003-05-08 06:35:39 +00:00

17 lines
331 B
Makefile

# $FreeBSD$
SUBDIR=
# The boot loader
.if ${MACHINE_ARCH} != "amd64"
SUBDIR+=boot
.endif
# KLD modules build for both a.out and ELF
.if defined(MODULES_WITH_WORLD)
SUBDIR+=modules
.endif
HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
.include <bsd.subdir.mk>