mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-02 12:20:51 +00:00
0c38f15ac7
For directories that don't many anything, add NO_OBJ=t just before we include bsd.init.mk. This prevents them from creating an OBJ directory. In addition, prevent defs.mk from creating the machine related links in these cases. They aren't needed and break, at least on stable, the read-only src tree build.
13 lines
149 B
Makefile
13 lines
149 B
Makefile
# $FreeBSD$
|
|
|
|
NO_OBJ=t
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
SUBDIR= boot1 loader
|
|
.if ${MK_ZFS} != "no"
|
|
SUBDIR+=zfsboot zfsloader
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|