xref: /freebsd/sys/Makefile (revision 6b806d21d144c25f4fad714e1c0cf780f5e27d7e)
1# $FreeBSD$
2
3# The boot loader
4.if !defined(NO_BOOT)
5.if ${MACHINE_ARCH} != "arm"
6SUBDIR=	boot
7.endif
8.endif
9
10# Loadable kernel modules
11.if defined(MODULES_WITH_WORLD)
12SUBDIR+=modules
13.endif
14
15HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
16
17.include <bsd.subdir.mk>
18