From a20098aba4ae1ff77cef65e9cf13fc43aba25d54 Mon Sep 17 00:00:00 2001 From: Mikael Lund Date: Sun, 30 Jul 2023 19:07:54 +0200 Subject: [PATCH] Make all the first target in Makefile --- Makefile_cc65 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile_cc65 b/Makefile_cc65 index f025ac5..2d5d75b 100644 --- a/Makefile_cc65 +++ b/Makefile_cc65 @@ -39,11 +39,11 @@ LIB_OBJECTS = \ .PHONY: all clean cleanall test +all: libmega65.a + libmega65.a: $(LIB_OBJECTS) $(AR65) a $@ $^ -all: libmega65.a $(TESTS_PRGS) - clean: rm -f $(LIB_OBJECTS) $(TESTS_PRGS) tests/*.o rm -rf work