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