Makefile revision 134007
1# $FreeBSD: head/sys/Makefile 134007 2004-08-19 09:54:28Z des $
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