X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FExecutionEngine%2FMakefile;h=e0e050e89728b0f8645825f4f04228f23eec996e;hb=761411c21b27c5a7fd2368f0a35d312013f2b5c5;hp=da98f66116f44e59340df1c72c91b85c87bd10c9;hpb=f25b7729c11bb1abe7e26fb0510cb3ed766358fc;p=oota-llvm.git diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index da98f66116f..e0e050e8972 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -1,34 +1,13 @@ +##===- 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 +LIBRARYNAME = LLVMExecutionEngine PARALLEL_DIRS = Interpreter JIT -# Get the config name... -include $(LEVEL)/Makefile.$(shell uname) - -# Generic JIT libraries -JITLIBS = lli-jit codegen -ARCHLIBS = - -# What the X86 JIT requires -JITLIBS += x86 -# X86 doesn't require any ARCHLIBS - - - -# 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 -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 = -ldl - include $(LEVEL)/Makefile.common