diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-09 15:09:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-06-09 15:11:50 +0300 |
commit | 24c6a4a76920d501fe947131cfa5f1adccdafcc6 (patch) | |
tree | 4f4783e23202c88b71673e2b3afed6660b412b50 /test/Makefile | |
parent | 8832c4b4f96d553b0cf6374548cb493655fe662c (diff) | |
download | paranucker-24c6a4a76920d501fe947131cfa5f1adccdafcc6.tar.gz paranucker-24c6a4a76920d501fe947131cfa5f1adccdafcc6.tar.bz2 paranucker-24c6a4a76920d501fe947131cfa5f1adccdafcc6.tar.xz paranucker-24c6a4a76920d501fe947131cfa5f1adccdafcc6.zip |
Simplify compilation in tests.
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 40a48fc..a0aa921 100644 --- a/test/Makefile +++ b/test/Makefile @@ -5,7 +5,7 @@ CC := gcc-5 CXX := g++-5 PLUGIN = ../build/src/.libs/astdumper.so -CMD = ${CXX} -fplugin=${PLUGIN} -fplugin-arg-astdumper-command=${1} ${2} -o a.out 2>${3} +CMD = ${CXX} -c -fplugin=${PLUGIN} -fplugin-arg-astdumper-command=${1} ${2} -o a.out 2>${3} all: test1 test2 test3 test4 clean crashes: crashtest1 crashtest2 clean |