summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 87da8a7..6a85c35 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -5,12 +5,14 @@ CC := gcc-5
CXX := g++-5
PLUGIN = ../build/src/.libs/astdumper.so
-CMD = ${CXX} -fplugin=${PLUGIN} -fplugin-arg-astdumper-command=${1} ${2} 2>../${3}
+CMD = ${CXX} -fplugin=${PLUGIN} -fplugin-arg-astdumper-command=${1} ${2} -o a.out 2>../${3}
-all: test1 clean
+all: test1 test2 clean
clean:
@rm a.out 2>/dev/null || true
test1:
$(call CMD,dump,test1.c,test.txt)
+test2:
+ $(call CMD,dump,test2.h,test2.txt)