summaryrefslogtreecommitdiffstats
path: root/make/custom/i386ex.cfg
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--make/custom/i386ex.cfg8
1 files changed, 4 insertions, 4 deletions
diff --git a/make/custom/i386ex.cfg b/make/custom/i386ex.cfg
index 9381dc67e0..9dc8de3830 100644
--- a/make/custom/i386ex.cfg
+++ b/make/custom/i386ex.cfg
@@ -32,13 +32,13 @@ CFLAGS_OPTIMIZE_V = -O2 -g
# is currently required.
define make-exe
- $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).elf \
+ $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS)
- $(OBJCOPY) -O srec $(basename $@).elf $(basename $@).srec
+ $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).srec
sed -e 's/.$$//' -e '/^S0/d' $(basename $@).srec | \
$(PACKHEX) > $(basename $@).exe
- $(NM) -g -n $(basename $@).elf > $(basename $@).num
- $(SIZE) $(basename $@).elf
+ $(NM) -g -n $(basename $@).nxe > $(basename $@).num
+ $(SIZE) $(basename $@).nxe
endef
# Miscellaneous additions go here