mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
and empty options files. The rules are now generated automatically in
bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}).
16 lines
314 B
Makefile
16 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>
|