9900a2bb5e
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
20 lines
384 B
Makefile
20 lines
384 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/cfi
|
|
|
|
KMOD= cfi
|
|
SRCS= ${_cfi_bus} cfi_core.c cfi_dev.c
|
|
SRCS+= bus_if.h device_if.h opt_cfi.h
|
|
|
|
.if ${MACHINE} == "arm"
|
|
_cfi_bus= cfi_bus_fdt.c cfi_bus_ixp4xx.c ofw_bus_if.h
|
|
.endif
|
|
.if ${MACHINE} == "powerpc"
|
|
_cfi_bus= cfi_bus_fdt.c ofw_bus_if.h
|
|
.endif
|
|
|
|
opt_cfi.h:
|
|
echo "#define CFI_SUPPORT_STRATAFLASH 1" > ${.TARGET}
|
|
|
|
.include <bsd.kmod.mk>
|