Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 1 | LEVEL = ../.. |
Chris Lattner | c9744e7 | 2001-09-07 22:59:25 +0000 | [diff] [blame] | 2 | TOOLNAME = lli |
| 3 | USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support target |
Chris Lattner | 365a76e | 2001-09-10 04:49:44 +0000 | [diff] [blame] | 4 | TOOLLINKOPTS = -ldl |
Chris Lattner | c9744e7 | 2001-09-07 22:59:25 +0000 | [diff] [blame] | 5 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 6 | include $(LEVEL)/Makefile.common |
| 7 | |
Chris Lattner | 4a82271 | 2001-10-24 19:52:41 +0000 | [diff] [blame] | 8 | all :: $(LEVEL)/tools/Debug/RuntimeLib.bc |
| 9 | |
| 10 | Debug/RuntimeLib.c: RuntimeLib.lc |
| 11 | cp -f $< $@ |
| 12 | |
| 13 | Debug/RuntimeLib.o: Debug/RuntimeLib.c |
| 14 | /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@ |
| 15 | |
| 16 | $(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o |
| 17 | opt -dce $< -o $@ -f -q |
| 18 | |
| 19 | |