17d6c63672
Not objected to by: -current
18 lines
372 B
Makefile
18 lines
372 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
|
|
|
|
EXPORT_SYMS= YES # XXX evaluate
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
CFLAGS += -DPC98
|
|
SRCS += mecia.c
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|