From 9ae2bf60c965a1ee46f198e01386e80aa3929d6e Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 10 Nov 2021 09:21:52 +0100 Subject: [PATCH] Add clean target to Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 0fc8931..4b3fb93 100644 --- a/Makefile +++ b/Makefile @@ -2,3 +2,7 @@ test-python: cargo build --release cp target/release/libinstant_distance.dylib instant-distance-py/test/instant_distance.so PYTHONPATH=instant-distance-py/test/ python3 -m test + +clean: + cargo clean + rm instant-distance-py/test/instant_distance.so