diff options
Diffstat (limited to 'sys/modules/firewire/sbp/Makefile')
-rw-r--r-- | sys/modules/firewire/sbp/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/modules/firewire/sbp/Makefile b/sys/modules/firewire/sbp/Makefile new file mode 100644 index 0000000..3e08db5 --- /dev/null +++ b/sys/modules/firewire/sbp/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +# Makefile for the SBP-II (Serial Bus Protocol 2/SCSI over IEEE1394) + +.PATH: ${.CURDIR}/../../../dev/firewire + +CFLAGS+= -g + +KMOD = sbp +SRCS = bus_if.h device_if.h\ + opt_bus.h opt_firewire.h opt_cam.h opt_scsi.h\ + sbp.c \ + firewire.h firewirereg.h \ + iec13213.h + +opt_sbp.h: + echo "#define SBP2_FREEBSD_MODULE 1" > opt_sbp.h + +.include <bsd.kmod.mk> + |