2003-12-08 01:34:36 +00:00
|
|
|
#
|
2004-02-12 00:47:09 +00:00
|
|
|
# (C) Copyright 2003 Josef Baumgartner <josef.baumgartner@telex.de>
|
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2004
|
2003-12-08 01:34:36 +00:00
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2003-12-08 01:34:36 +00:00
|
|
|
#
|
|
|
|
|
2004-02-12 00:47:09 +00:00
|
|
|
PLATFORM_RELFLAGS += -ffixed-d7 -msep-data
|
2007-11-07 23:51:00 +00:00
|
|
|
|
|
|
|
cfg=$(shell grep configs $(OBJTREE)/include/config.h | sed 's/.*<\(configs.*\)>/\1/')
|
2009-06-12 11:29:00 +00:00
|
|
|
is5208:=$(shell grep CONFIG_M5208 $(TOPDIR)/include/$(cfg))
|
2008-02-23 08:07:57 +00:00
|
|
|
is5249:=$(shell grep CONFIG_M5249 $(TOPDIR)/include/$(cfg))
|
|
|
|
is5253:=$(shell grep CONFIG_M5253 $(TOPDIR)/include/$(cfg))
|
|
|
|
is5271:=$(shell grep CONFIG_M5271 $(TOPDIR)/include/$(cfg))
|
|
|
|
is5272:=$(shell grep CONFIG_M5272 $(TOPDIR)/include/$(cfg))
|
2008-02-04 21:38:20 +00:00
|
|
|
is5275:=$(shell grep CONFIG_M5275 $(TOPDIR)/include/$(cfg))
|
2008-02-23 08:07:57 +00:00
|
|
|
is5282:=$(shell grep CONFIG_M5282 $(TOPDIR)/include/$(cfg))
|
2007-11-07 23:51:00 +00:00
|
|
|
|
2009-06-12 11:29:00 +00:00
|
|
|
ifneq (,$(findstring CONFIG_M5208,$(is5208)))
|
|
|
|
PLATFORM_CPPFLAGS += -mcpu=5208
|
|
|
|
endif
|
2007-11-07 23:51:00 +00:00
|
|
|
ifneq (,$(findstring CONFIG_M5249,$(is5249)))
|
|
|
|
PLATFORM_CPPFLAGS += -mcpu=5249
|
|
|
|
endif
|
|
|
|
ifneq (,$(findstring CONFIG_M5253,$(is5253)))
|
|
|
|
PLATFORM_CPPFLAGS += -mcpu=5253
|
|
|
|
endif
|
|
|
|
ifneq (,$(findstring CONFIG_M5271,$(is5271)))
|
|
|
|
PLATFORM_CPPFLAGS += -mcpu=5271
|
|
|
|
endif
|
|
|
|
ifneq (,$(findstring CONFIG_M5272,$(is5272)))
|
|
|
|
PLATFORM_CPPFLAGS += -mcpu=5272
|
|
|
|
endif
|
2008-02-04 21:38:20 +00:00
|
|
|
ifneq (,$(findstring CONFIG_M5275,$(is5275)))
|
|
|
|
PLATFORM_CPPFLAGS += -mcpu=5275
|
|
|
|
endif
|
2007-11-07 23:51:00 +00:00
|
|
|
ifneq (,$(findstring CONFIG_M5282,$(is5282)))
|
|
|
|
PLATFORM_CPPFLAGS += -mcpu=5282
|
|
|
|
endif
|