diff options
-rw-r--r-- | lib/ExecutionEngine/Makefile | 8 | ||||
-rw-r--r-- | tools/lli/Makefile | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index 0fdcf8b5dd..54f675c28c 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -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 + ../Debug/gccas $< -o $@ diff --git a/tools/lli/Makefile b/tools/lli/Makefile index 0fdcf8b5dd..54f675c28c 100644 --- a/tools/lli/Makefile +++ b/tools/lli/Makefile @@ -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 + ../Debug/gccas $< -o $@ |