Fix warning
[oota-llvm.git] / lib / ExecutionEngine / Makefile
index a0d51b562eccf6175a987f40b0f6b55a1b903942..a0e73d715001191f7fc267b10d454f324e977ca0 100644 (file)
@@ -1,21 +1,10 @@
 LEVEL = ../..
 TOOLNAME = lli
-USEDLIBS = bcreader bcwriter vmcore asmwriter analysis support \
-          target transforms
+USEDLIBS = bcreader vmcore analysis.a support.a target.a transforms.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
-
-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
-       LD_LIBRARY_PATH=../lib/Debug:/usr/dcs/software/evaluation/encap/gcc-3.0.4/lib/ ../Debug/gccas $< -o $@
-
-