freebsd-dev/sys/modules/aic/Makefile
Warner Losh bdbd54e46d Add aic to the list of drivers that might work with NEWCARD. I've added
the same config lines that NetBSD has.  This builds with both NEWCARD
and GENERIC config files.
2001-01-08 01:59:15 +00:00

18 lines
289 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/aic
KMOD= aic
SRCS= aic.c aic_pccard.c
SRCS+= opt_bdg.h device_if.h bus_if.h pci_if.h isa_if.h card_if.h
SRCS+= opt_cam.h opt_scsi.h
.if ${MACHINE} == "pc98"
SRCS+= aic_cbus.c
CFLAGS+= -DPC98
.else
SRCS+= aic_isa.c
.endif
.include <bsd.kmod.mk>