From 935211230e079447cdd11e29a426884714116c07 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 7 Oct 2018 22:48:40 +0100 Subject: [PATCH] ue: Makefile fixes --- Applications/ue/Makefile.6502 | 4 ++-- Applications/ue/Makefile.68000 | 3 +-- Applications/ue/Makefile.6809 | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Applications/ue/Makefile.6502 b/Applications/ue/Makefile.6502 index b9b1a94a..d8f8c4cb 100644 --- a/Applications/ue/Makefile.6502 +++ b/Applications/ue/Makefile.6502 @@ -28,5 +28,5 @@ ue.ansi: $(OBJS) term-ansi.o ue: $(OBJS) term.o $(LINKER) -o $@ $(LINKER_OPT) $(CRT0) $^ termcap6502.lib c6502.lib -clean realclean clobber: - rm -f *.rel ue *~ +clean: + rm -f $(OBJS) $(APPS) $(SRCS:.c=) *.lst *.map size.report *.o *.rel diff --git a/Applications/ue/Makefile.68000 b/Applications/ue/Makefile.68000 index 61a4bfd6..149fc3de 100644 --- a/Applications/ue/Makefile.68000 +++ b/Applications/ue/Makefile.68000 @@ -38,5 +38,4 @@ size.report: $(APPS) ls -l $< > $@ clean: - rm -f $(OBJS) $(APPS) $(SRCS:.c=) *.lst *.map size.report - + rm -f $(OBJS) $(APPS) $(SRCS:.c=) *.lst *.map size.report *.o *.rel diff --git a/Applications/ue/Makefile.6809 b/Applications/ue/Makefile.6809 index 1053e4cb..13c49641 100644 --- a/Applications/ue/Makefile.6809 +++ b/Applications/ue/Makefile.6809 @@ -37,5 +37,5 @@ size.report: $(APPS) ls -l $< > $@ clean: - rm -f $(OBJS) $(APPS) $(SRCS:.c=) *.lst *.map size.report + rm -f $(OBJS) $(APPS) $(SRCS:.c=) *.lst *.map size.report *.o *.rel -- 2.34.1