Makefile revision 70091
1# $FreeBSD: head/sys/modules/aic/Makefile 70091 2000-12-16 04:00:40Z nyan $
2
3.PATH:	${.CURDIR}/../../dev/aic
4KMOD	= aic
5SRCS	= aic.c aic_pccard.c
6SRCS	+= opt_bdg.h device_if.h bus_if.h pci_if.h isa_if.h
7SRCS	+= opt_cam.h opt_scsi.h
8
9.if ${MACHINE} == "pc98"
10SRCS	+= aic_cbus.c
11CFLAGS	+= -DPC98
12.else
13SRCS	+= aic_isa.c
14.endif
15
16.include <bsd.kmod.mk>
17