summaryrefslogtreecommitdiffstats
path: root/make/custom/gp32.cfg
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-22 13:21:59 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-22 13:21:59 +0000
commitc99984885a0396974111cdee1b540034005dfab0 (patch)
tree3fbf1ea9c1bdac103b34f3949fc43d41d24d87f1 /make/custom/gp32.cfg
parent2005-11-22 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-c99984885a0396974111cdee1b540034005dfab0.tar.bz2
Replace .gxb with .elf.
Diffstat (limited to '')
-rw-r--r--make/custom/gp32.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/custom/gp32.cfg b/make/custom/gp32.cfg
index bb3cb16b39..0b5d9b16ba 100644
--- a/make/custom/gp32.cfg
+++ b/make/custom/gp32.cfg
@@ -26,7 +26,7 @@ CFLAGS_OPTIMIZE_V=
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \
$(LINK_OBJS) $(LINK_LIBS)
- $(OBJCOPY) -O binary $(basename $@).exe $(basename $@).gxb
+ $(OBJCOPY) -O binary $(basename $@).exe $(basename $@).elf
$(NM) -g -n $(basename $@).exe > $(basename $@).num
$(SIZE) $(basename $@).exe
endef
@@ -34,7 +34,7 @@ endef
define make-cxx-exe
$(LINK.cc) $(AM_CFLAGS) $(AM_CXXFLAGS) $(AM_LDFLAGS) -o $@ \
$(LINK_OBJS) $(LINK_LIBS)
- $(OBJCOPY) -O binary $(basename $@).exe $(basename $@).gxb
+ $(OBJCOPY) -O binary $(basename $@).exe $(basename $@).elf
$(NM) -g -n $(basename $@).exe > $(basename $@).num
$(SIZE) $(basename $@).exe
endef