freebsd-dev/sys/modules/ahci/Makefile
Enji Cooper 193d9e768b sys/modules: normalize .CURDIR-relative paths to SRCTOP
This simplifies make output/logic

Tested with:	`cd sys/modules; make ALL_MODULES=` on amd64
MFC after:	1 month
Sponsored by:	Dell EMC Isilon
2017-03-04 10:10:17 +00:00

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>