diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-09 22:25:07 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-09 22:25:07 +0300 |
| commit | 0c6ba17b2f08d05195cdbaeba4607fdd8d000775 (patch) | |
| tree | 17acd9e959500f5c87c8af7ada943cf218a79f5b /tests/Makefile | |
| parent | e8a1df103cc28419dd7d4439c0b1d1739d110f78 (diff) | |
| download | kmi-0c6ba17b2f08d05195cdbaeba4607fdd8d000775.tar.gz kmi-0c6ba17b2f08d05195cdbaeba4607fdd8d000775.zip | |
fix make clean
Diffstat (limited to 'tests/Makefile')
| -rw-r--r-- | tests/Makefile | 6 |
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 |
