diff options
Diffstat (limited to 'sys/modules/firewire')
-rw-r--r-- | sys/modules/firewire/Makefile | 1 | ||||
-rw-r--r-- | sys/modules/firewire/sbp_targ/Makefile | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/sys/modules/firewire/Makefile b/sys/modules/firewire/Makefile index 4bce1a6..a8ea55c 100644 --- a/sys/modules/firewire/Makefile +++ b/sys/modules/firewire/Makefile @@ -3,6 +3,7 @@ SUBDIR = SUBDIR += firewire SUBDIR += sbp +SUBDIR += sbp_targ SUBDIR += fwe .include <bsd.subdir.mk> diff --git a/sys/modules/firewire/sbp_targ/Makefile b/sys/modules/firewire/sbp_targ/Makefile new file mode 100644 index 0000000..7a105b4 --- /dev/null +++ b/sys/modules/firewire/sbp_targ/Makefile @@ -0,0 +1,16 @@ +# $FreeBSD$ + +# Makefile for the SBP-II Target mode + +.PATH: ${.CURDIR}/../../../dev/firewire + +KMOD = sbp_targ +SRCS = bus_if.h device_if.h \ + opt_cam.h opt_scsi.h \ + sbp_targ.c sbp.h \ + firewire.h firewirereg.h \ + iec13213.h + +#CFLAGS += -g +.include <bsd.kmod.mk> + |