1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/examples/Kaleidoscope/MCJIT/lazy/Makefile
2013-07-22 18:47:24 +00:00

8 lines
291 B
Makefile

all: toy-mcjit toy-jit
toy-mcjit : toy.cpp
clang++ toy.cpp -g -O3 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --libs core mcjit native` -o toy-mcjit
toy-jit : toy-jit.cpp
clang++ toy-jit.cpp -g -O3 -rdynamic `llvm-config --cppflags --ldflags --libs core jit native` -o toy-jit