mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-09 11:48:53 +00:00
5ee828ca95
Prior to Kbuild, $(OBJTREE) was used for pointing to the top of build directory with absolute path. In Kbuild style, $(objtree) is used instead. This commit renames OBJTREE to objtree and delete the defition of OBJTREE. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
17 lines
463 B
Makefile
17 lines
463 B
Makefile
#
|
|
# (C) Copyright 2000-2010
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
PLATFORM_CPPFLAGS += -DCONFIG_4xx -mstring -msoft-float
|
|
|
|
cfg=$(shell grep configs $(objtree)/include/config.h | sed 's/.*<\(configs.*\)>/\1/')
|
|
is440:=$(shell grep CONFIG_440 $(srctree)/include/$(cfg))
|
|
|
|
ifneq (,$(findstring CONFIG_440,$(is440)))
|
|
PLATFORM_CPPFLAGS += -Wa,-m440 -mcpu=440
|
|
else
|
|
PLATFORM_CPPFLAGS += -Wa,-m405 -mcpu=405
|
|
endif
|