5c73a49168
Reviewed by: ru MFC after: 3 days
18 lines
333 B
Makefile
18 lines
333 B
Makefile
# $FreeBSD$
|
|
|
|
# The boot loader
|
|
.if !defined(NO_BOOT)
|
|
.if ${MACHINE_ARCH} != "arm"
|
|
SUBDIR= boot
|
|
.endif
|
|
.endif
|
|
|
|
# Loadable kernel modules
|
|
.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>
|