1999-11-14 13:54:44 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
1998-11-03 06:11:35 +00:00
|
|
|
# Build the add-in FORTH interpreter
|
|
|
|
SUBDIR+= ficl
|
|
|
|
|
|
|
|
# Pick the machine-dependant subdir based on the target architecture.
|
1999-11-15 08:31:14 +00:00
|
|
|
# XXX pc98 is basicly a special i386 with MACHINE_ARCH=i386 and MACHINE=pc98.
|
|
|
|
.if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98"
|
|
|
|
SUBDIR+= ${MACHINE}
|
|
|
|
.else
|
1999-11-14 13:54:44 +00:00
|
|
|
SUBDIR+= ${MACHINE_ARCH}
|
1999-11-15 08:31:14 +00:00
|
|
|
.endif
|
1998-08-21 03:17:42 +00:00
|
|
|
|
1999-07-28 20:32:44 +00:00
|
|
|
# Build ARC / AlphaBIOS executable on the Alpha
|
1999-11-14 13:54:44 +00:00
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
1999-07-28 20:32:44 +00:00
|
|
|
SUBDIR+= arc
|
|
|
|
.endif
|
|
|
|
|
1998-08-21 03:17:42 +00:00
|
|
|
.include <bsd.subdir.mk>
|