blob: 2efb60f04ad0c351f686daf26422e9fda2730173 [file] [log] [blame]
TsiChung Liewf6afe722007-06-18 13:50:13 -05001#
2# (C) Copyright 2003 Josef Baumgartner <josef.baumgartner@telex.de>
3#
4# (C) Copyright 2000-2004
5# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6#
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02007# SPDX-License-Identifier: GPL-2.0+
TsiChung Liewf6afe722007-06-18 13:50:13 -05008#
9
Masahiro Yamada60bb7342014-07-30 14:08:17 +090010cfg=$(srctree)/include/configs/$(CONFIG_SYS_CONFIG_NAME:"%"=%).h
11is5301x:=$(shell grep CONFIG_MCF5301x $(cfg))
12is532x:=$(shell grep CONFIG_MCF532x $(cfg))
TsiChung Liew90ac2b62010-03-10 17:32:13 -060013
TsiChung Liew90ac2b62010-03-10 17:32:13 -060014ifneq (,$(findstring CONFIG_MCF5301x,$(is5301x)))
15PLATFORM_CPPFLAGS += -mcpu=53015 -fPIC
16endif
17ifneq (,$(findstring CONFIG_MCF532x,$(is532x)))
TsiChungLiew6ad36902007-11-07 17:51:00 -060018PLATFORM_CPPFLAGS += -mcpu=5329 -fPIC
TsiChung Liew90ac2b62010-03-10 17:32:13 -060019endif