Makefile revision 114832
1# $FreeBSD: head/sys/Makefile 114832 2003-05-08 06:35:39Z peter $
2
3SUBDIR=
4# The boot loader
5.if ${MACHINE_ARCH} != "amd64"
6SUBDIR+=boot
7.endif
8
9# KLD modules build for both a.out and ELF
10.if defined(MODULES_WITH_WORLD)
11SUBDIR+=modules
12.endif
13
14HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
15
16.include <bsd.subdir.mk>
17