From 4b0778e37d0319c687afb5f6c8db10d0e8bf7a76 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Thu, 29 Dec 2022 10:33:02 +0100 Subject: [PATCH] Mrproper --- zig-impl/makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/zig-impl/makefile b/zig-impl/makefile index 3fd030c..af498dd 100644 --- a/zig-impl/makefile +++ b/zig-impl/makefile @@ -19,6 +19,13 @@ test-ipcd: src/ipcd.zig doc: src/ipcd.zig $(ZIGC) build-exe $(ZIGOPTS) $(ZIGMAKEDOC) $^ +TO_CLEAN != ls misc/*.zig | sed 's/.zig$\//' | sed 's_misc/__' +TO_CLEAN += ipcd +clean: + @-rm $(TO_CLEAN) 2>/dev/null + +mrproper: clean + @-rm -r docs zig-cache zig-out 2>/dev/null # You can add your specific instructions there. -include makefile.user