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