mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-08 07:13:06 +00:00
7 lines
245 B
Makefile
7 lines
245 B
Makefile
|
# SPDX-License-Identifier: GPL-2.0-only
|
||
|
ffa-bus-y = bus.o
|
||
|
ffa-driver-y = driver.o
|
||
|
ffa-transport-$(CONFIG_ARM_FFA_SMCCC) += smccc.o
|
||
|
ffa-module-objs := $(ffa-bus-y) $(ffa-driver-y) $(ffa-transport-y)
|
||
|
obj-$(CONFIG_ARM_FFA_TRANSPORT) = ffa-module.o
|