10 lines
315 B
Makefile
10 lines
315 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/$(src)/include
|
|
|
|
orion-gpio-$(CONFIG_GPIOLIB) += gpio.o
|
|
obj-$(CONFIG_PLAT_ORION_LEGACY) += irq.o pcie.o time.o common.o mpp.o
|
|
obj-$(CONFIG_PLAT_ORION_LEGACY) += $(orion-gpio-y)
|