aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/aha
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1999-11-28 18:53:47 +0000
committerBruce Evans <bde@FreeBSD.org>1999-11-28 18:53:47 +0000
commit6f940b38476a3dc6ecaca7ad305eddf1f9eab154 (patch)
treea75309cf2a123fe17ec5d563ef84cd1db17898a6 /sys/modules/aha
parentbc019cca2fb755ab66c54bc88a073e843b66bb55 (diff)
downloadsrc-6f940b38476a3dc6ecaca7ad305eddf1f9eab154.tar.gz
src-6f940b38476a3dc6ecaca7ad305eddf1f9eab154.zip
Removed special rules for building and cleaning device interface files
and empty options files. The rules are now generated automatically in bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}).
Notes
Notes: svn path=/head/; revision=53846
Diffstat (limited to 'sys/modules/aha')
-rw-r--r--sys/modules/aha/Makefile17
1 files changed, 2 insertions, 15 deletions
diff --git a/sys/modules/aha/Makefile b/sys/modules/aha/Makefile
index e0d4f3f6016c..295124f62504 100644
--- a/sys/modules/aha/Makefile
+++ b/sys/modules/aha/Makefile
@@ -1,29 +1,16 @@
# $FreeBSD$
-S = ${.CURDIR}/../..
-.PATH: $S/dev/aha
+.PATH: ${.CURDIR}/../../dev/aha
KMOD = aha
SRCS = aha.c aha_isa.c ahareg.h opt_cam.h device_if.h bus_if.h aha.h \
opt_scsi.h isa_if.h
-CLEANFILES += aha.h device_if.h bus_if.h opt_cam.h opt_scsi.h isa_if.h
+CLEANFILES = aha.h
CFLAGS += ${DEBUG_FLAGS}
aha.h:
echo "#define NAHA 1" > aha.h
-opt_cam.h:
- touch opt_cam.h
-
opt_scsi.h:
echo "#define SCSI_DELAY 15000" > opt_scsi.h
-device_if.h: $S/kern/makedevops.pl $S/kern/device_if.m
- perl $S/kern/makedevops.pl -h $S/kern/device_if.m
-
-bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
- perl $S/kern/makedevops.pl -h $S/kern/bus_if.m
-
-isa_if.h: $S/kern/makedevops.pl $S/isa/isa_if.m
- perl $S/kern/makedevops.pl -h $S/isa/isa_if.m
-
.include <bsd.kmod.mk>