summaryrefslogtreecommitdiff
path: root/test/Makefile
blob: 87da8a74fd81d7a06ebfcfbde5d4d45ca578262a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)