xref: /freebsd/sys/Makefile (revision c8fa8e25d77016f36e63790f2ceccb90613ccb2e)
1# $FreeBSD$
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