freebsd-dev/sys/modules/oldcard/Makefile
Warner Losh 367995aaa2 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
2001-05-16 07:35:54 +00:00

17 lines
346 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../pccard ${.CURDIR}/../../pci
KMOD= oldcard
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>