Makefile revision 103285
1# $FreeBSD: head/sys/modules/firewire/sbp/Makefile 103285 2002-09-13 12:31:56Z ikob $
2
3# Makefile for the SBP-II (Serial Bus Protocol 2/SCSI over IEEE1394)
4
5.PATH: ${.CURDIR}/../../../dev/firewire
6
7CFLAGS+= -g
8
9KMOD	= sbp
10SRCS	= bus_if.h device_if.h\
11	  opt_bus.h opt_firewire.h opt_cam.h opt_scsi.h\
12	  sbp.c \
13	  firewire.h firewirereg.h \
14	  iec13213.h
15
16opt_sbp.h:
17	echo "#define SBP2_FREEBSD_MODULE 1" > opt_sbp.h
18
19.include <bsd.kmod.mk>
20
21