]> rtime.felk.cvut.cz Git - boost-statechart-viewer.git/blob - Makefile
Corrected Makefile(wrong name of the source file) and updated visualizer.cpp Now...
[boost-statechart-viewer.git] / Makefile
1 #LLVM_SRC=llvm
2
3 -include config.local
4
5 # Use our version of clang (even without installing)
6 LLVM_BIN= $(CURDIR)/_install/bin
7
8 LLVM_CONFIG := $(shell $(LLVM_BIN)/llvm-config --cxxflags --ldflags --libs jit core)
9
10 g++ : visualizer.cpp
11         g++ visualizer.cpp -o visualizer -g -lclangParse -lclangFrontend -lclangSerialization \
12         -lclangDriver -lclangCodeGen -lclangSema -lclangChecker \
13         -lclangAnalysis -lclangRewrite -lclangAST -lclangLex -lclangBasic \
14         $(LLVM_CONFIG)