freebsd-src/sys/boot/common/Makefile.inc
Mike Smith c7db92c026 Add BootForth hooks; if BOOT_FORTH is defined, pass every line read
to the Forth interpreter.  Instantiate all of our inbuilt commands
as Forth words, and handle them being called from there.

Add my copyright to the bcache module (oops).
1998-11-04 00:29:01 +00:00

19 lines
393 B
Makefile

# $Id: Makefile.inc,v 1.7 1998/11/02 23:28:10 msmith Exp $
SRCS+= bcache.c boot.c commands.c console.c devopen.c interp.c
SRCS+= interp_backslash.c interp_parse.c load_aout.c load_elf.c ls.c misc.c
SRCS+= module.c panic.c
# Machine-independant ISA PnP
.if HAVE_ISABUS
SRCS+= isapnp.c
.endif
.if HAVE_PNP
SRCS+= pnp.c
.endif
# Forth interpreter
.if BOOT_FORTH
SRCS+= interp_forth.c
.endif