2015-02-08 19:15:33 +00:00

10 lines
211 B
Makefile

.PHONY: all
all: toy
toy: toy.cpp
clang++ -Wall -std=c++11 toy.cpp -g -O0 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --system-libs --libs core orcjit native` -o toy
.PHONY: clean
clean:
rm -f toy