aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-07-09 22:25:07 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-07-09 22:25:07 +0300
commit0c6ba17b2f08d05195cdbaeba4607fdd8d000775 (patch)
tree17acd9e959500f5c87c8af7ada943cf218a79f5b /tests/Makefile
parente8a1df103cc28419dd7d4439c0b1d1739d110f78 (diff)
downloadkmi-0c6ba17b2f08d05195cdbaeba4607fdd8d000775.tar.gz
kmi-0c6ba17b2f08d05195cdbaeba4607fdd8d000775.zip
fix make clean
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 2012107..00b523e 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -32,3 +32,9 @@ check: $(TESTS)
build/printf.o: common/printf.c
mkdir -p build
$(COMPILE) -c common/printf.c -o build/printf.o
+
+RM ?= rm
+
+.PHONY: clean
+clean:
+ $(RM) -rf build