From 9185971d8062b7aff5aa57a7c961b04b8a3b2a70 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 3 Nov 2014 19:26:53 +0000 Subject: [PATCH] Makefile: call the final result fuzix.bin not uzi.bin Still need to rename all the temporaries --- Kernel/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Kernel/Makefile b/Kernel/Makefile index 133c6f70..b2f9d776 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -87,7 +87,7 @@ OBJS = $(COBJS) $(AOBJS) JUNK = $(CSRCS:.c=.lst) $(CSRCS:.c=.s) $(CSRCS:.c=.asm) $(CSRCS:.c=.sym) $(ASRCS:.s=.lst) $(ASRCS:.s=.sym) $(CSRCS:.c=.rst) $(CSRCS:.c=.o) $(ASRCS:.s=.rst) -all: uzi.bin +all: fuzix.bin .SUFFIXES: # delete the default suffixes .SUFFIXES: .c .s .rel @@ -136,13 +136,13 @@ ifeq ($(CPU), z80) uzi.ihx: target $(OBJS) platform-$(TARGET)/uzi.lnk $(CROSS_LD) -n -f platform-$(TARGET)/uzi.lnk -uzi.bin: uzi.ihx tools/analysemap tools/memhogs tools/binman +fuzix.bin: uzi.ihx tools/analysemap tools/memhogs tools/binman tools/analysemap hogs.txt head -5 hogs.txt makebin -s 65536 -p uzi.ihx >uzi.tmp - tools/binman uzi.tmp uzi.map uzi.bin + tools/binman uzi.tmp uzi.map fuzix.bin $(MAKE) -C platform-$(TARGET) image else uzi.bin: target $(OBJS) @@ -150,7 +150,7 @@ uzi.bin: target $(OBJS) endif clean: - rm -f $(OBJS) $(JUNK) uzi.cdb uzi.com uzi.bin uzi.map uzi.noi uzi.ihx core *~ include/*~ version.c tools/analysemap tools/memhogs tools/binman hogs.txt hogs.txt.old tools/*~ + rm -f $(OBJS) $(JUNK) uzi.cdb uzi.com fuzix.bin uzi.map uzi.noi uzi.ihx core *~ include/*~ version.c tools/analysemap tools/memhogs tools/binman hogs.txt hogs.txt.old tools/*~ +make -C platform-$(TARGET) clean clean-all: clean -- 2.34.1