X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FExecutionEngine%2FMakefile;h=cf714324e3b6e7ef84acffad46f960d847e986d8;hb=fc3aa4b4cdb2a451a2cb526736b822613a9aa120;hp=6ee2d3f3abe04a8f653837aca5281926e2c20df6;hpb=52852708714c59baf1b0426bffe5d1546af61d46;p=oota-llvm.git diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index 6ee2d3f3abe..cf714324e3b 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -1,34 +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 -PARALLEL_DIRS = Interpreter JIT - -# Get the config name... -include $(LEVEL)/Makefile.$(shell uname) - -# Generic JIT libraries -JITLIBS = lli-jit codegen -ARCHLIBS = +LIBRARYNAME = LLVMExecutionEngine -# What the X86 JIT requires -JITLIBS += x86 -# X86 doesn't require any ARCHLIBS +include $(LEVEL)/Makefile.config +PARALLEL_DIRS = Interpreter MCJIT RuntimeDyld - -# What the Sparc JIT requires -ifeq ($(ARCH),Sparc) -JITLIBS += sparc -ARCHLIBS = sched livevar instrument.a profpaths \ - bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \ - mapping select postopts.a preopts +ifeq ($(USE_INTEL_JITEVENTS), 1) +PARALLEL_DIRS += IntelJITEvents endif -USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \ - transformutils.a bcreader vmcore support.a target.a - -# Have gcc tell the linker to export symbols from the program so that -# dynamically loaded modules can be linked against them. -# -TOOLLINKOPTS = $(PLATFORMLIBDL) +ifeq ($(USE_OPROFILE), 1) +PARALLEL_DIRS += OProfileJIT +endif -include $(LEVEL)/Makefile.common +include $(LLVM_SRC_ROOT)/Makefile.rules