freebsd-dev/sys/modules/aha/Makefile
Bruce Evans 9e4be63dd6 Add ${DEBUG_FLAGS} to CFLAGS in bsd.kmod.mk, not in scattered module
makefiles.  Bad examples in fxp/Makefile keep getting copied to new
makefiles.
2000-01-28 11:26:46 +00:00

16 lines
289 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 <bsd.kmod.mk>