From 137706fa2e2118d5fffee5e5714a8421458600be Mon Sep 17 00:00:00 2001 From: zhangc43 Date: Wed, 20 Apr 2016 15:01:02 -0400 Subject: [PATCH] modify makefile to support cleanup for testing build --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1130f36ad..5c4caa4a5 100755 --- a/Makefile +++ b/Makefile @@ -27,6 +27,6 @@ build/FEM: build .PHONY: clean clean: - rm -rvf build - rm -rvf testing - rm -rvf bin + rm -rvf build # standard build directory + rm -rvf testing # for testing build (testing script in PRIVATE) + rm -rvf bin # default binary store location