Genericize the ReversePostOrderIterator.
[oota-llvm.git] / tools / lli / Makefile
index bc5578c0a2368d2362dc411386e7a6f6c027066a..3e3f0b0d9e914790169dceedaeeac113d4f2edb0 100644 (file)
@@ -1,7 +1,21 @@
 LEVEL = ../..
 TOOLNAME = lli
-USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support target
+USEDLIBS = bcreader bcwriter vmcore asmwriter analysis support \
+          target transforms
 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.2/lib/ ../Debug/gccas $< -o $@
+
+