Genericize the ReversePostOrderIterator.
[oota-llvm.git] / tools / lli / Makefile
index 0fdcf8b5ddb89c4f112b711b6e45aca4ed86e1a1..3e3f0b0d9e914790169dceedaeeac113d4f2edb0 100644 (file)
@@ -1,6 +1,6 @@
 LEVEL = ../..
 TOOLNAME = lli
-USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support \
+USEDLIBS = bcreader bcwriter vmcore asmwriter analysis support \
           target transforms
 TOOLLINKOPTS = -ldl
 
@@ -11,11 +11,11 @@ all :: $(LEVEL)/tools/Debug/RuntimeLib.bc
 Debug/RuntimeLib.c: RuntimeLib.lc
        cp -f $< $@
 
-Debug/RuntimeLib.o: Debug/RuntimeLib.c
+Debug/RuntimeLib.ll: Debug/RuntimeLib.c
        @-rm $@
-       /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@
+       /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -S -o $@
 
-$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o
-       ../Debug/opt -dce $< -o $@ -f -q
+$(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 $@