From c6eba79c2d14e4c48bbe2974c21b65337a7bf80e Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 10 May 2007 17:36:19 +0000 Subject: 2007-05-10 Joel Sherrill * custom/gba.cfg, custom/gp32.cfg, custom/i386ex.cfg, custom/pc386.cfg, custom/sim68000.cfg, custom/ts_386ex.cfg: Clean up to use .nxe extension instead of BSP unique ones. --- make/custom/gba.cfg | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'make/custom/gba.cfg') diff --git a/make/custom/gba.cfg b/make/custom/gba.cfg index dd9a1fe21a..618f98651f 100644 --- a/make/custom/gba.cfg +++ b/make/custom/gba.cfg @@ -23,26 +23,26 @@ CFLAGS_OPTIMIZE_V = -O2 -g define make-exe $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \ - -Wl,-Map,$(basename $@).map -o $(basename $@).elf \ + -Wl,-Map,$(basename $@).map -o $(basename $@).nxe \ $(LINK_OBJS) $(LINK_LIBS) - $(OBJCOPY) -O binary $(basename $@).elf $@ + $(OBJCOPY) -O binary $(basename $@).nxe $@ $(OBJCOPY) -O binary --remove-section=.comment \ --remove-section=.note --strip-unneeded \ - $(basename $@).elf $(basename $@).gba - $(NM) -g -n $(basename $@).elf > $(basename $@).num - $(SIZE) $(basename $@).elf + $(basename $@).nxe $(basename $@).gba + $(NM) -g -n $(basename $@).nxe > $(basename $@).num + $(SIZE) $(basename $@).nxe endef define make-cxx-exe $(LINK.cc) $(AM_CFLAGS) $(AM_CXXFLAGS) $(AM_LDFLAGS) \ - -Wl,-Map,$(basename $@).map -o $(basename $@).elf \ + -Wl,-Map,$(basename $@).map -o $(basename $@).nxe \ $(LINK_OBJS) $(LINK_LIBS) - $(OBJCOPY) -O binary $(basename $@).elf $@ + $(OBJCOPY) -O binary $(basename $@).nxe $@ $(OBJCOPY) -O binary --remove-section=.comment \ --remove-section=.note --strip-unneeded \ - $(basename $@).elf $(basename $@).gba - $(NM) -g -n $(basename $@).elf > $(basename $@).num - $(SIZE) $(basename $@).elf + $(basename $@).nxe $(basename $@).gba + $(NM) -g -n $(basename $@).nxe > $(basename $@).num + $(SIZE) $(basename $@).nxe endef # Miscellaneous additions go here -- cgit v1.2.3