From 7658baf048c9a2214b184e07498ff9d4478c800c Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 31 Dec 2017 23:02:18 +0000 Subject: [PATCH] Makefile.6502: Fix minor buglet --- Applications/V7/cmd/Makefile.6502 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Applications/V7/cmd/Makefile.6502 b/Applications/V7/cmd/Makefile.6502 index 2da02474..90b8067b 100644 --- a/Applications/V7/cmd/Makefile.6502 +++ b/Applications/V7/cmd/Makefile.6502 @@ -30,9 +30,11 @@ APPSNS = $(OBJSNS:.o=) APPSTC = $(OBJSTC:.o=) -APPS = $(OBJS:.o=) $(OBJSBAD:.o=) $(OBJSNS:.o=) $(OBJSTC:.o=) +APPS = $(OBJS:.o=) $(OBJSBAD:.o=) -all: $(APPS) sizes +APPS_ALL = $(APPS) $(APPSNS) $(APPSTC) + +all: $(APPS_ALL) sizes $(APPSNS): OPTS = -- 2.34.1