mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
13 lines
266 B
Makefile
13 lines
266 B
Makefile
# Build the add-in FORTH interpreter
|
|
SUBDIR+= ficl
|
|
|
|
# Pick the machine-dependant subdir based on the target architecture.
|
|
SUBDIR+= ${MACHINE}
|
|
|
|
# Build ARC / AlphaBIOS executable on the Alpha
|
|
.if ${MACHINE} == "alpha"
|
|
SUBDIR+= arc
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|