blob: b1b936d3bf0ba92e6f88b269fe17e44177efcf40 [file] [log] [blame]
Chris Lattner92101ac2001-08-23 17:05:04 +00001LEVEL = ../..
Chris Lattnerc9744e72001-09-07 22:59:25 +00002TOOLNAME = lli
3USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support target
Chris Lattner365a76e2001-09-10 04:49:44 +00004TOOLLINKOPTS = -ldl
Chris Lattnerc9744e72001-09-07 22:59:25 +00005
Chris Lattner92101ac2001-08-23 17:05:04 +00006include $(LEVEL)/Makefile.common
7
Chris Lattner4a822712001-10-24 19:52:41 +00008all :: $(LEVEL)/tools/Debug/RuntimeLib.bc
9
10Debug/RuntimeLib.c: RuntimeLib.lc
11 cp -f $< $@
12
13Debug/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