1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

/tmp/cvswGS523

This commit is contained in:
Warner Losh 1999-09-28 02:45:34 +00:00
parent 896f49b096
commit 7cbb6373b9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=51739
2 changed files with 32 additions and 3 deletions

View File

@ -2,9 +2,9 @@
# XXX present but broken: atapi ip_mroute_mod joy pcic
SUBDIR= ax al ccd cd9660 coda dm fdesc fxp if_disc if_ppp if_sl if_tun ipfw \
kernfs md mfs mii msdos mx nfs ntfs nullfs pn portal procfs rl sf \
sis sk ste ti tl umapfs union vn vr wb xl
SUBDIR= aha al ax ccd cd9660 coda dm fdesc fxp if_disc if_ppp if_sl if_tun \
ipfw kernfs md mfs mii msdos mx nfs ntfs nullfs pn portal procfs rl \
sf sis sk ste ti tl umapfs union vn vr wb xl
# XXX some of these can move to the general case when de-i386'ed
.if ${MACHINE_ARCH} == "i386"

29
sys/modules/aha/Makefile Normal file
View File

@ -0,0 +1,29 @@
# $FreeBSD$
S = ${.CURDIR}/../..
.PATH: $S/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
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>