From 37b1ba3d4970ece44d3938a3af24af1bf89655ea Mon Sep 17 00:00:00 2001 From: Kurt Smith Date: Tue, 29 Apr 2014 14:44:17 -0500 Subject: [PATCH] Adds cleanall makefile target. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index da977b0b..f3d910fb 100644 --- a/Makefile +++ b/Makefile @@ -91,5 +91,9 @@ coverage_report: clean: -${PYTHON} setup.py clean --all -find . \( -iname '*.py[co]' -or -iname '*.so' -or -iname '__pycache__' \) -exec ${RM} -r '{}' + - -${RM} -r ${PARALLEL_OUT_DIR} build MANIFEST dist distarray.egg-info coverage_report + -${RM} -r ${PARALLEL_OUT_DIR} build coverage_report .PHONY: clean + +cleanall: clean + -${RM} -r MANIFEST dist distarray.egg-info +.PHONY: cleanall