freebsd-dev/sys/modules/asr/Makefile
Scott Long 0001afe2f5 Make an attempt to get the asr driver to compile on Alpha by fixing some i386
specific bogons.  Compile with -O0, as anything higher gives the compiler
a fit.  No idea if this driver will actually work on Alpha, though.
2001-04-01 08:33:01 +00:00

15 lines
219 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/asr
KMOD= asr
SRCS= asr.c
SRCS+= opt_scsi.h opt_cam.h opt_asr.h
SRCS+= device_if.h bus_if.h pci_if.h
.if ${MACHINE_ARCH} == "alpha"
CFLAGS+= -O0
.endif
.include <bsd.kmod.mk>