bootforth seems to be working well enough for me and others to turn

on by default.  If it causes trouble, it's very easy to switch off again.
This commit is contained in:
Jordan K. Hubbard 1998-11-12 07:40:51 +00:00
parent d3b89ae3a4
commit 207fe43d59

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.17 1998/11/04 02:36:18 jkh Exp $
# $Id: Makefile,v 1.18 1998/11/04 03:42:36 msmith Exp $
BASE= loader
PROG= ${BASE}
@ -15,13 +15,13 @@ HAVE_PNP= yes
HAVE_ISABUS= yes
# Enable BootForth
#BOOT_FORTH= yes
#CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl
#.if exists(${.OBJDIR}/../../ficl/libficl.a)
#LIBFICL= ${.OBJDIR}/../../ficl/libficl.a
#.else
#LIBFICL= ${.CURDIR}/../../ficl/libficl.a
#.endif
BOOT_FORTH= yes
CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl
.if exists(${.OBJDIR}/../../ficl/libficl.a)
LIBFICL= ${.OBJDIR}/../../ficl/libficl.a
.else
LIBFICL= ${.CURDIR}/../../ficl/libficl.a
.endif
# Always add MI sources
.PATH: ${.CURDIR}/../../common