193d9e768b
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
15 lines
271 B
Makefile
15 lines
271 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/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>
|