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