mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
7931dfc523
This option does not exist, so the Makefile rule does nothing. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
30 lines
867 B
Makefile
30 lines
867 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
head-y := arch/m68k/cpu/$(CPU)/start.o
|
|
|
|
libs-y += arch/m68k/cpu/$(CPU)/
|
|
libs-y += arch/m68k/lib/
|
|
|
|
cpuflags-$(CONFIG_M5208) := -mcpu=5208
|
|
cpuflags-$(CONFIG_M5235) := -mcpu=5235 -fPIC
|
|
cpuflags-$(CONFIG_M5249) := -mcpu=5249
|
|
cpuflags-$(CONFIG_M5253) := -mcpu=5253
|
|
cpuflags-$(CONFIG_M5271) := -mcpu=5271
|
|
cpuflags-$(CONFIG_M5272) := -mcpu=5272
|
|
cpuflags-$(CONFIG_M5275) := -mcpu=5275
|
|
cpuflags-$(CONFIG_M5282) := -mcpu=5282
|
|
cpuflags-$(CONFIG_M5307) := -mcpu=5307
|
|
cpuflags-$(CONFIG_MCF5301x) := -mcpu=53015 -fPIC
|
|
cpuflags-$(CONFIG_MCF532x) := -mcpu=5329 -fPIC
|
|
cpuflags-$(CONFIG_MCF5441x) := -mcpu=54418 -fPIC
|
|
|
|
PLATFORM_CPPFLAGS += $(cpuflags-y)
|
|
|
|
|
|
ldflags-$(CONFIG_MCF5441x) := --got=single
|
|
|
|
ifneq (,$(findstring -linux-,$(shell $(CC) --version)))
|
|
ifneq (,$(findstring GOT,$(shell $(LD) --help)))
|
|
KBUILD_LDFLAGS += $(ldflags-y)
|
|
endif
|
|
endif
|