xref: /dragonfly/sys/dev/raid/twa/Makefile (revision 2cd2d2b5)
1# $FreeBSD$
2# $DragonFly: src/sys/dev/raid/twa/Makefile,v 1.1 2004/04/16 20:13:16 drhodus Exp $
3
4#
5# Uncomment the following line to bundle firmware with the driver,
6# which may be flashed onto the controller, if the firmware on the
7# controller is older than the one bundled, and needs to be upgraded.
8# The size of the driver will increase significantly (to over 500KB)
9# if this option is selected.
10#
11FLASH_FIRMWARE=1
12
13KMOD = twa
14.PATH:	${.CURDIR}
15SRCS = twa_freebsd.c twa_cam.c twa.c twa_globals.c \
16      bus_if.h device_if.h pci_if.h opt_scsi.h opt_cam.h opt_twa.h
17
18.if defined(FLASH_FIRMWARE)
19CFLAGS+=-DTWA_FLASH_FIRMWARE
20SRCS += twa_fwimg.c
21.endif
22
23#CFLAGS+=-DTWA_DEBUG=0
24
25.include <bsd.kmod.mk>
26