freebsd-dev/sys/modules/isp/Makefile
John Baldwin 97af632bcb Add an isp(4) module. sbus support is only compiled in on sparc64.
pci support is always compiled in.
2002-10-31 19:50:18 +00:00

15 lines
252 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/isp
KMOD= isp
SRCS= bus_if.h device_if.h pci_if.h \
opt_cam.h opt_ddb.h opt_isp.h \
isp.c isp_target.c isp_freebsd.c isp_pci.c
.if ${MACHINE_ARCH} == sparc64
SRCS+= isp_sbus.c
.endif
.include <bsd.kmod.mk>