summaryrefslogtreecommitdiffstats
path: root/make/custom/mpc55xx.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-09 16:30:27 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-09 16:30:27 +0000
commitfb2205a11b25796f47b950ab64ff9e2446a55301 (patch)
tree3bb753046b5e04242289a71ffb8361c93e6fb271 /make/custom/mpc55xx.cfg
parent2008-09-09 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-fb2205a11b25796f47b950ab64ff9e2446a55301.tar.bz2
2008-09-09 Joel Sherrill <joel.sherrill@OARcorp.com>
* leaf.cfg, compilers/gcc-target-default.cfg, custom/bf537Stamp.cfg, custom/gen5200.cfg, custom/gen83xx.cfg, custom/genmcf548x.cfg, custom/mbx8xx.cfg, custom/mpc55xx.cfg, custom/nds.cfg, custom/pc386.cfg, custom/tqm8xx.cfg: Remove use of AM_LDFLAGS. Ensure LDFLAGS works all the time. Clean up BSPs which defined their own make-exe rules inappropriately.
Diffstat (limited to 'make/custom/mpc55xx.cfg')
-rw-r--r--make/custom/mpc55xx.cfg9
1 files changed, 2 insertions, 7 deletions
diff --git a/make/custom/mpc55xx.cfg b/make/custom/mpc55xx.cfg
index c77ea020b9..a178903206 100644
--- a/make/custom/mpc55xx.cfg
+++ b/make/custom/mpc55xx.cfg
@@ -16,12 +16,7 @@ RTEMS_CPU_MODEL = mpc55xx
RTEMS_BSP_FAMILY = mpc55xxevb
# FIXME
-CPU_CFLAGS = -mcpu=8540 -meabi -msdata -fno-common -funit-at-a-time -D__ppc_generic -mstrict-align -D$(RTEMS_BOARD_MODEL)
+CPU_CFLAGS = -mcpu=8540 -meabi -msdata -fno-common -funit-at-a-time \
+ -D__ppc_generic -mstrict-align -D$(RTEMS_BOARD_MODEL)
CFLAGS_OPTIMIZE_V = -O2 -g -fno-keep-inline-functions
-
-define make-exe
- $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS)-o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
- $(NM) -g -n $(basename $@).exe > $(basename $@).num
- $(SIZE) $(basename $@).exe
-endef