all: tut2

tut2: tut2.cpp
	c++ -g tut2.cpp `llvm-config --cppflags --ldflags --libs core` -o tut2

clean:
	rm -rf tut2 *.o *.dSYM
