56ca39961b
This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated.
16 lines
307 B
Makefile
16 lines
307 B
Makefile
# $FreeBSD$
|
|
|
|
.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
|
|
|
|
aha.h:
|
|
echo "#define NAHA 1" > aha.h
|
|
|
|
opt_scsi.h:
|
|
echo "#define SCSI_DELAY 15000" > opt_scsi.h
|
|
|
|
.include "${.CURDIR}/../../conf/kmod.mk"
|