Add a NOFORTH variable so we can build a smaller loader without

Forth support, for use with PicoBSD

Approved-By: jordan
This commit is contained in:
Luigi Rizzo 2000-02-04 20:57:09 +00:00
parent 9fbf0caaac
commit 2dea85d508

View File

@ -16,6 +16,7 @@ SRCS= main.c conf.c
HAVE_PNP= yes
HAVE_ISABUS= yes
.if !defined(NOFORTH)
# Enable BootForth
BOOT_FORTH= yes
CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/i386
@ -24,6 +25,7 @@ LIBFICL= ${.OBJDIR}/../../ficl/libficl.a
.else
LIBFICL= ${.CURDIR}/../../ficl/libficl.a
.endif
.endif
# Always add MI sources
.PATH: ${.CURDIR}/../../common