view examples/Kaleidoscope/MCJIT/lazy/Makefile @ 68:a37375f10d66

remove unnecessary comments
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Wed, 12 Feb 2014 01:06:33 +0900
parents 95c75e76d11b
children
line wrap: on
line source

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