aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-03-11 17:57:13 +0000
committerChris Lattner <sabre@nondot.org>2002-03-11 17:57:13 +0000
commit2dc78088b7bebb439a8f660fbfbb1ea114840cfc (patch)
tree53488e3fe68c942ee9e505b257d85830054eb872 /lib
parent7b83b1db25ab0411e537b7cdac0dc653d4bbc951 (diff)
downloadexternal_llvm-2dc78088b7bebb439a8f660fbfbb1ea114840cfc.zip
external_llvm-2dc78088b7bebb439a8f660fbfbb1ea114840cfc.tar.gz
external_llvm-2dc78088b7bebb439a8f660fbfbb1ea114840cfc.tar.bz2
Remove runtime library in favor of users linking against real libraries.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1853 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/ExecutionEngine/Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile
index 1e4b4f7..8012468 100644
--- a/lib/ExecutionEngine/Makefile
+++ b/lib/ExecutionEngine/Makefile
@@ -5,17 +5,3 @@ USEDLIBS = bcreader bcwriter vmcore asmwriter analysis support \
TOOLLINKOPTS = -ldl
include $(LEVEL)/Makefile.common
-
-all :: $(LEVEL)/tools/Debug/RuntimeLib.bc
-
-Debug/RuntimeLib.c: RuntimeLib.lc
- cp -f $< $@
-
-Debug/RuntimeLib.ll: Debug/RuntimeLib.c
- @-rm $@
- /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -S -o $@
-
-$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.ll
- ../Debug/gccas $< -o $@
-
-