summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-17 20:22:07 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-17 20:22:07 +0300
commitbdfcd0d5ebd5465ea8a46bf3760a3d41de603532 (patch)
tree2f874895df442e81dc5662a49d5617cc75a3e0b3
parent77daf3fc1b20bd2b6903a0d93e90bb2b1a4e0460 (diff)
downloadparanucker-bdfcd0d5ebd5465ea8a46bf3760a3d41de603532.tar.gz
paranucker-bdfcd0d5ebd5465ea8a46bf3760a3d41de603532.tar.bz2
paranucker-bdfcd0d5ebd5465ea8a46bf3760a3d41de603532.tar.xz
paranucker-bdfcd0d5ebd5465ea8a46bf3760a3d41de603532.zip
Remove clean target from tests make file.
-rw-r--r--test/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/Makefile b/test/Makefile
index b456501..91b3943 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -8,7 +8,7 @@ TESTS6 = test6-01 test6-02 test6-03 test6-04
TESTS7 = test7-01 test7-02 test7-03 test7-04 test7-05
ALLTESTS = test1 test2 test3 test4 test5 test6 test7 ${TESTS1} ${TESTS2} ${TESTS3} ${TESTS4} ${TESTS5} ${TESTS6} ${TESTS7}
-.PHONY: ${ALLTESTS} ${CRASHES} all crashes clean
+.PHONY: ${ALLTESTS} ${CRASHES} all crashes
CC := gcc-5
CXX := g++-5
@@ -17,11 +17,9 @@ MAKEFLAGS += --jobs=9
PLUGIN = ../build/src/.libs/astdumper.so
CMD = LANG=C ${CXX} -c -fplugin=${PLUGIN} -fplugin-arg-astdumper-command=${1} ${2} -o ../build/${3}.out 2>${3}
-all: ${ALLTESTS} ${CRASHES} clean
-crashes: ${CRASHES} clean
-
-clean: ${ALLTESTS} ${CRASHES}
- @rm ../build/*.out 2>/dev/null || true
+all: ${ALLTESTS} ${CRASHES}
+tests: ${ALLTESTS}
+crashes: ${CRASHES}
test1: ${TESTS1}
test1-01: