diff options
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r-- | lib/ExecutionEngine/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index bc5578c0a2..b1b936d3bf 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -5,3 +5,15 @@ TOOLLINKOPTS = -ldl include $(LEVEL)/Makefile.common +all :: $(LEVEL)/tools/Debug/RuntimeLib.bc + +Debug/RuntimeLib.c: RuntimeLib.lc + cp -f $< $@ + +Debug/RuntimeLib.o: Debug/RuntimeLib.c + /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@ + +$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o + opt -dce $< -o $@ -f -q + + |