97d5b83076
- Use format-independant module allocator. - Conditionalise ISA PnP support. - Simplify PnP enumerator interface. - Improve module/object searching. - Add missing depend/install targets in BTX makefiles. - Pass the kernel environment and module data in extended bootinfo fields. - Add a pointer to the end of the kernel + modules in bootinfo. - Fix parsing of old-style kernel arguments.
13 lines
299 B
Makefile
13 lines
299 B
Makefile
# $Id: Makefile.inc,v 1.4 1998/09/04 02:43:26 msmith Exp $
|
|
|
|
SRCS+= boot.c commands.c console.c devopen.c interp.c interp_backslash.c
|
|
SRCS+= interp_parse.c load_aout.c ls.c misc.c module.c panic.c
|
|
|
|
# Machine-independant ISA PnP
|
|
.if HAVE_ISABUS
|
|
SRCS+= isapnp.c
|
|
.endif
|
|
.if HAVE_PNP
|
|
SRCS+= pnp.c
|
|
.endif
|