Catch up with some recent changes:

1) pcic_isa.c
	2) For pc98, add mecia driver and -DPC98 to command line.
	3) pcic_p.c -> pcic_pci.c
This commit is contained in:
imp 2001-05-16 07:35:54 +00:00
parent c4b168c6d9
commit 8a95eaff24

View File

@ -3,9 +3,14 @@
.PATH: ${.CURDIR}/../../pccard ${.CURDIR}/../../pci
KMOD= oldcard
SRCS= pccard.c pcic.c pccard_beep.c pccard_nbk.c pcic_p.c \
SRCS= pccard.c pcic.c pccard_beep.c pccard_nbk.c pcic_pci.c pcic_isa.c \
opt_pcic.h device_if.h bus_if.h isa_if.h pci_if.h \
power_if.h card_if.h power_if.c card_if.c
NOMAN=
.if ${MACHINE} == "pc98"
CFLAGS += -DPC98
SRCS += mecia.c
.endif
.include <bsd.kmod.mk>