freebsd-dev/sys/modules/aha/Makefile
Bruce Evans 6f940b3847 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}).
1999-11-28 18:53:47 +00:00

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>