Makefile revision 184573
1# $FreeBSD: head/sys/modules/amr/Makefile 184573 2008-11-03 00:53:54Z scottl $
2
3.PATH: ${.CURDIR}/../../dev/amr
4
5SUBDIR= amr_cam
6.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
7SUBDIR+= amr_linux
8.endif
9
10KMOD=	amr
11SRCS=	amr.c amr_pci.c amr_disk.c device_if.h bus_if.h pci_if.h
12
13# SCSI passthrough support for non-disk devices
14#SRCS+=	amr_cam.c opt_cam.h opt_scsi.h
15
16# Enable a questionable optimisation for newer adapters
17#CFLAGS+= -DAMR_QUARTZ_GOFASTER
18
19# Debugging
20#CFLAGS+= -DAMR_DEBUG=3
21
22.include <bsd.kmod.mk>
23