Makefile revision 154823
1# $FreeBSD: head/sys/modules/amr/Makefile 154823 2006-01-25 18:11:59Z ambrisko $
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
13#CFLAGS+= -DAMR_SCSI_PASSTHROUGH
14SRCS+=	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