6f940b3847
and empty options files. The rules are now generated automatically in bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}).
17 lines
314 B
Makefile
17 lines
314 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
|
|
CFLAGS += ${DEBUG_FLAGS}
|
|
|
|
aha.h:
|
|
echo "#define NAHA 1" > aha.h
|
|
|
|
opt_scsi.h:
|
|
echo "#define SCSI_DELAY 15000" > opt_scsi.h
|
|
|
|
.include <bsd.kmod.mk>
|