summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 972f0c1045656a20539b47f1f847cc125bb8615e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
LEVEL = ../..
DIRS := Basic Lex Parse AST Sema CodeGen Driver

include $(LEVEL)/Makefile.common

check::
	cd test; $(MAKE)

test::
	cd test; $(MAKE)

clean::
	@rm -rf build
	@rm -rf `find test -name Output`