aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-08-23 17:05:04 +0000
committerChris Lattner <sabre@nondot.org>2001-08-23 17:05:04 +0000
commit92101acd7fd44fd467fbeb974ae6c042289c74f9 (patch)
tree8a95b8161082bc30eb13e16302b30a3f38fd0ef3 /lib/ExecutionEngine/Makefile
parente27c344b5657eb225688c2adb163d6064cc9cf8f (diff)
downloadexternal_llvm-92101acd7fd44fd467fbeb974ae6c042289c74f9.zip
external_llvm-92101acd7fd44fd467fbeb974ae6c042289c74f9.tar.gz
external_llvm-92101acd7fd44fd467fbeb974ae6c042289c74f9.tar.bz2
Initial checkin of interpreter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@361 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Makefile')
-rw-r--r--lib/ExecutionEngine/Makefile11
1 files changed, 11 insertions, 0 deletions
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