Replace .gxb with .elf.

This commit is contained in:
Ralf Corsepius
2005-11-22 13:21:59 +00:00
parent 5367a6eab7
commit c99984885a

View File

@@ -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