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
13 lines
248 B
Makefile
13 lines
248 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/ahci
|
|
|
|
KMOD= ahci
|
|
SRCS= ahci.c ahci_pci.c ahciem.c ahci.h device_if.h bus_if.h pci_if.h opt_cam.h
|
|
|
|
.if ${MACHINE_CPUARCH} == "aarch64"
|
|
SRCS+= ahci_generic.c acpi_if.h ofw_bus_if.h
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|