0917704bd4
All Makefiles now use MACHINE_ARCH for the target architecture. Unification is required for cross-building. Tags added to: sys/boot/Makefile sys/boot/arc/loader/Makefile sys/kern/Makefile usr.bin/cpp/Makefile usr.bin/gcore/Makefile usr.bin/truss/Makefile usr.bin/gcore/Makefile: fixed typo: MACHINDE -> MACHINE_ARCH
15 lines
289 B
Makefile
15 lines
289 B
Makefile
# $FreeBSD$
|
|
|
|
# Build the add-in FORTH interpreter
|
|
SUBDIR+= ficl
|
|
|
|
# Pick the machine-dependant subdir based on the target architecture.
|
|
SUBDIR+= ${MACHINE_ARCH}
|
|
|
|
# Build ARC / AlphaBIOS executable on the Alpha
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
SUBDIR+= arc
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|