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
259 B
Makefile
15 lines
259 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/esp
|
|
|
|
KMOD= esp
|
|
SRCS= device_if.h esp_pci.c ${esp_sbus} bus_if.h ncr53c9x.c ${ofw_bus_if}
|
|
SRCS+= opt_cam.h pci_if.h
|
|
|
|
.if ${MACHINE} == "sparc64"
|
|
ofw_bus_if= ofw_bus_if.h
|
|
esp_sbus= esp_sbus.c
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|