19 lines
390 B
Makefile
19 lines
390 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/amr
|
|
|
|
KMOD= amr
|
|
SRCS= amr.c amr_pci.c amr_disk.c device_if.h bus_if.h pci_if.h
|
|
|
|
# SCSI passthrough support for non-disk devices
|
|
#CFLAGS+= -DAMR_SCSI_PASSTHROUGH
|
|
#SRCS+= amr_cam.c opt_cam.h opt_scsi.h
|
|
|
|
# Enable a questionable optimisation for newer adapters
|
|
#CFLAGS+= -DAMR_QUARTZ_GOFASTER
|
|
|
|
# Debugging
|
|
#CFLAGS+= -DAMR_DEBUG=3
|
|
|
|
.include <bsd.kmod.mk>
|