From 725f53d1e7108cb998a16101bd77c29cfc844dd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sun, 27 Jul 2014 09:13:43 +0200 Subject: [PATCH] Add a `clean` rule to the makefile. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 59532af0..6db4a1f2 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,9 @@ doc: mkdir -p $(nalgebra_doc_path) rustdoc src/lib.rs +clean: + cargo clean + distcheck: rm -rf $(tmp) git clone --recursive . $(tmp)