From 4a305d4d7400fd976813ac350eed3bdba6b4d9b2 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 22 Nov 2005 13:22:19 +0000 Subject: Replace .coff with .elf. --- make/custom/i386ex.cfg | 10 +++++----- make/custom/ts_386ex.cfg | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'make') diff --git a/make/custom/i386ex.cfg b/make/custom/i386ex.cfg index f502b0e08d..54b482f56d 100644 --- a/make/custom/i386ex.cfg +++ b/make/custom/i386ex.cfg @@ -28,20 +28,20 @@ CFLAGS_OPTIMIZE_V=-O4 # # This is a good way to get debug information. The rdmp file is large # though (1.9 Mb for hello) and greatly slows the build process. -# $(OBJDUMP) -x -m i386 -d $(basename $@).coff > $(basename $@).rdmp +# $(OBJDUMP) -x -m i386 -d $(basename $@).elf > $(basename $@).rdmp # The following are definitions of make-exe which will work using ld as # is currently required. It is expected that as of gcc 2.8, the end user # will be able to override parts of the compilers specs and link using gcc. define make-exe - $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).coff \ + $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).elf \ $(LINK_OBJS) $(LINK_LIBS) - $(OBJCOPY) -O srec $(basename $@).coff $(basename $@).i + $(OBJCOPY) -O srec $(basename $@).elf $(basename $@).i sed -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \ $(PACKHEX) > $(basename $@).exe - $(NM) -g -n $(basename $@).coff > $(basename $@).num - $(SIZE) $(basename $@).coff + $(NM) -g -n $(basename $@).elf > $(basename $@).num + $(SIZE) $(basename $@).elf endef # Miscellaneous additions go here diff --git a/make/custom/ts_386ex.cfg b/make/custom/ts_386ex.cfg index 862d1a7070..71932c2fd7 100644 --- a/make/custom/ts_386ex.cfg +++ b/make/custom/ts_386ex.cfg @@ -29,7 +29,7 @@ CFLAGS_OPTIMIZE_V= -O4 # # This is a good way to get debug information. The rdmp file is large # though (1.9 Mb for hello) and greatly slows the build process. -# $(OBJDUMP) -x -m i386 -d $(basename $@).coff > $(basename $@).rdmp +# $(OBJDUMP) -x -m i386 -d $(basename $@).elf > $(basename $@).rdmp define make-exe $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).elf \ -- cgit v1.2.3