X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=lib%2FExecutionEngine%2FMakefile;h=1858d776616c3c7faa1b2da2668e7ad8a24bcbc6;hb=09aa3f0ef35d9241c92439d74b8d5e9a81d814c2;hp=b1b936d3bf0ba92e6f88b269fe17e44177efcf40;hpb=4a822714510711f7ca16a57b6db7002685f0c366;p=oota-llvm.git diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index b1b936d3bf0..1858d776616 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -1,19 +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 -USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support target -TOOLLINKOPTS = -ldl +LIBRARYNAME = LLVMExecutionEngine +PARALLEL_DIRS = Interpreter JIT MCJIT include $(LEVEL)/Makefile.common - -all :: $(LEVEL)/tools/Debug/RuntimeLib.bc - -Debug/RuntimeLib.c: RuntimeLib.lc - cp -f $< $@ - -Debug/RuntimeLib.o: Debug/RuntimeLib.c - /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@ - -$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o - opt -dce $< -o $@ -f -q - -