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.
17 lines
317 B
Makefile
17 lines
317 B
Makefile
# $FreeBSD$
|
|
|
|
NO_OBJ=t
|
|
|
|
SUBDIR= uboot
|
|
|
|
#
|
|
# The BERI boot loader port works only on 64-bit MIPS; not a hard port to
|
|
# 32-bit if someone is interested. Build on all 64-bit MIPS platforms to
|
|
# ensure it gets adequate build-test coverage.
|
|
#
|
|
.if ${MACHINE_ARCH} == "mips64"
|
|
SUBDIR+= beri
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|