blob: 2efb60f04ad0c351f686daf26422e9fda2730173 [file] [log] [blame]
TsiChung Liew8e585f02007-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 Denk1a459662013-07-08 09:37:19 +02007# SPDX-License-Identifier: GPL-2.0+
TsiChung Liew8e585f02007-06-18 13:50:13 -05008#
9
Masahiro Yamada51148792014-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 Liewf9d877a2010-03-10 17:32:13 -060013
TsiChung Liewf9d877a2010-03-10 17:32:13 -060014ifneq (,$(findstring CONFIG_MCF5301x,$(is5301x)))
15PLATFORM_CPPFLAGS += -mcpu=53015 -fPIC
16endif
17ifneq (,$(findstring CONFIG_MCF532x,$(is532x)))
TsiChungLiewd9240a52007-11-07 17:51:00 -060018PLATFORM_CPPFLAGS += -mcpu=5329 -fPIC
TsiChung Liewf9d877a2010-03-10 17:32:13 -060019endif