07f35f4b9a
which are also likely to be irrelevant for sun4v (there's no SBus on sun4v and only some EBus devices). While at it fix some style bugs according to style.Makefile(5) where appropriate. MFC after: 3 days
15 lines
274 B
Makefile
15 lines
274 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_library.c isp_target.c isp_freebsd.c isp_pci.c
|
|
|
|
.if ${MACHINE} == sparc64
|
|
SRCS+= isp_sbus.c ofw_bus_if.h
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|