summaryrefslogtreecommitdiff
path: root/sys/modules/firewire
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2002-10-14 19:18:30 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2002-10-14 19:18:30 +0000
commit24b7381388e155bb60cbcc3889a9be38a568457a (patch)
treef3ac52723876de8d4a6b124fb77b7cddc3715b7f /sys/modules/firewire
parent83a20b6e3ecc30c66116604a29d874c36e93baad (diff)
Notes
Diffstat (limited to 'sys/modules/firewire')
-rw-r--r--sys/modules/firewire/firewire/Makefile4
-rw-r--r--sys/modules/firewire/fwe/Makefile13
-rw-r--r--sys/modules/firewire/sbp/Makefile9
3 files changed, 6 insertions, 20 deletions
diff --git a/sys/modules/firewire/firewire/Makefile b/sys/modules/firewire/firewire/Makefile
index 522cfad5c8ec..28f074f39adf 100644
--- a/sys/modules/firewire/firewire/Makefile
+++ b/sys/modules/firewire/firewire/Makefile
@@ -6,15 +6,11 @@
KMOD= firewire
SRCS = bus_if.h device_if.h pci_if.h \
- opt_bus.h opt_firewire.h \
firewire.c firewire.h firewire_phy.h firewirebusreg.h firewirereg.h \
fwohci.c fwohci_pci.c fwohcireg.h fwohcivar.h \
iec13213.h iec68113.h \
fwmem.c fwmem.h
-opt_firewire.h:
- echo "#define FIREWIRE_FREEBSD_MODULE 1" > opt_firewire.h
-
#EXPORT_SYMS= fw_asybusy \
# fw_asyreq \
# fw_bindadd \
diff --git a/sys/modules/firewire/fwe/Makefile b/sys/modules/firewire/fwe/Makefile
index 551299d7aaee..d3e163037fd8 100644
--- a/sys/modules/firewire/fwe/Makefile
+++ b/sys/modules/firewire/fwe/Makefile
@@ -1,19 +1,14 @@
# $FreeBSD$
-# Makefile for the SBP-II (Serial Bus Protocol 2/SCSI over IEEE1394)
+# Makefile for the fwe(4) module (Ethernet over IEEE1394)
.PATH: ${.CURDIR}/../../../dev/firewire
-CFLAGS+= -g
-
KMOD = if_fwe
-SRCS = bus_if.h device_if.h\
- opt_bus.h opt_firewire.h opt_inet.h\
- if_fwe.c if_fwevar.h\
+SRCS = bus_if.h device_if.h \
+ opt_inet.h \
+ if_fwe.c if_fwevar.h \
firewire.h firewirereg.h
-opt_fwe.h:
- echo "#define FIREWIRE_ETHEREMU_FREEBSD 1" > opt_fwe.h
-
.include <bsd.kmod.mk>
diff --git a/sys/modules/firewire/sbp/Makefile b/sys/modules/firewire/sbp/Makefile
index 3e08db5a6904..e114dbb4dbac 100644
--- a/sys/modules/firewire/sbp/Makefile
+++ b/sys/modules/firewire/sbp/Makefile
@@ -4,17 +4,12 @@
.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\
+SRCS = bus_if.h device_if.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>