Initial checkin of interpreter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@361 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile
new file mode 100644
index 0000000..522665f
--- /dev/null
+++ b/lib/ExecutionEngine/Makefile
@@ -0,0 +1,11 @@
+LEVEL = ../..
+include $(LEVEL)/Makefile.common
+
+all:: lli
+clean::
+ rm -f lli
+
+lli : $(ObjectsG)
+ $(LinkG) -o $@ $(ObjectsG) \
+ -lopt -lbcreader -lbcwriter \
+ -lvmcore -lasmwriter -lanalysis -lsupport