f94a3783cf
world as was our old way, rather than when building a kernel. Some people do not like the new way, and the release building still assumes modules are built with the world.
14 lines
285 B
Makefile
14 lines
285 B
Makefile
# $FreeBSD$
|
|
|
|
# The boot loader
|
|
SUBDIR= boot
|
|
|
|
# KLD modules build for both a.out and ELF
|
|
.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>
|