blob: be1220365a0729bac89d22612f3bf18be4ff7cb5 [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
10PLATFORM_RELFLAGS += -ffixed-d7 -msep-data
TsiChung Liewf9d877a2010-03-10 17:32:13 -060011
12cfg=$(shell grep configs $(OBJTREE)/include/config.h | sed 's/.*<\(configs.*\)>/\1/')
13is5301x:=$(shell grep CONFIG_MCF5301x $(TOPDIR)/include/$(cfg))
14is532x:=$(shell grep CONFIG_MCF532x $(TOPDIR)/include/$(cfg))
15
TsiChung Liewf9d877a2010-03-10 17:32:13 -060016ifneq (,$(findstring CONFIG_MCF5301x,$(is5301x)))
17PLATFORM_CPPFLAGS += -mcpu=53015 -fPIC
18endif
19ifneq (,$(findstring CONFIG_MCF532x,$(is532x)))
TsiChungLiewd9240a52007-11-07 17:51:00 -060020PLATFORM_CPPFLAGS += -mcpu=5329 -fPIC
TsiChung Liewf9d877a2010-03-10 17:32:13 -060021endif