blob: af943543a256a23cd21f1c7a3523bf2755f48aff [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 Yamada80f03982014-03-11 11:05:21 +090010cfg=$(shell grep configs $(objtree)/include/config.h | sed 's/.*<\(configs.*\)>/\1/')
Masahiro Yamadae7944942014-03-11 11:05:19 +090011is5301x:=$(shell grep CONFIG_MCF5301x $(srctree)/include/$(cfg))
12is532x:=$(shell grep CONFIG_MCF532x $(srctree)/include/$(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