From 9b5b255accd6557e6a7759d89e888c9fbe73e6e0 Mon Sep 17 00:00:00 2001 From: Daniel Lundqvist Date: Sat, 29 Mar 2025 20:14:17 +0100 Subject: [PATCH] Also clean object files in "containers" and "cregex" directories. --- smakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/smakefile b/smakefile index df2824c..c03fd60 100644 --- a/smakefile +++ b/smakefile @@ -6,6 +6,7 @@ NAME = configreader +CFLAGS = debug fullflush LFLAGS = addsym smallcode smalldata noicons batch LIBS = lib:sc.lib lib:amiga.lib lib:debug.lib @@ -24,7 +25,7 @@ configfile.lib : configfile.o configmodel.o sectionstore.o cregex/pattern.o creg # JOIN containers/stringarray.o containers/linearray.o containers/sectionarray.o containers/sectionmap.o AS containers/containers.lib clean: - delete \#?.o $(NAME) ALL QUIET + delete \#?.o containers/\#?.o cregex/\#?.o $(NAME) ALL QUIET cleanlibs: delete configfile.lib containers/\#?.o cregex/\#?.o ALL QUIET