X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FExecutionEngine%2FMakefile;h=cf714324e3b6e7ef84acffad46f960d847e986d8;hb=fc3aa4b4cdb2a451a2cb526736b822613a9aa120;hp=3e3f0b0d9e914790169dceedaeeac113d4f2edb0;hpb=8efb9d733faa38cce0cc92719ed05ce7eaa06dd7;p=oota-llvm.git diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index 3e3f0b0d9e9..cf714324e3b 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -1,21 +1,24 @@ +##===- lib/ExecutionEngine/Makefile ------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## LEVEL = ../.. -TOOLNAME = lli -USEDLIBS = bcreader bcwriter vmcore asmwriter analysis support \ - target transforms -TOOLLINKOPTS = -ldl +LIBRARYNAME = LLVMExecutionEngine -include $(LEVEL)/Makefile.common +include $(LEVEL)/Makefile.config -all :: $(LEVEL)/tools/Debug/RuntimeLib.bc +PARALLEL_DIRS = Interpreter MCJIT RuntimeDyld -Debug/RuntimeLib.c: RuntimeLib.lc - cp -f $< $@ - -Debug/RuntimeLib.ll: Debug/RuntimeLib.c - @-rm $@ - /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -S -o $@ - -$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.ll - LD_LIBRARY_PATH=../lib/Debug:/usr/dcs/software/evaluation/encap/gcc-3.0.2/lib/ ../Debug/gccas $< -o $@ +ifeq ($(USE_INTEL_JITEVENTS), 1) +PARALLEL_DIRS += IntelJITEvents +endif +ifeq ($(USE_OPROFILE), 1) +PARALLEL_DIRS += OProfileJIT +endif +include $(LLVM_SRC_ROOT)/Makefile.rules