blob: 3e70896c291cd56116817e92d7bb8c715ec7e86f [file] [log] [blame]
Chris Lattner92101ac2001-08-23 17:05:04 +00001LEVEL = ../..
Chris Lattnerc9744e72001-09-07 22:59:25 +00002TOOLNAME = lli
Chris Lattnere43db882001-10-27 04:15:57 +00003USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support \
4 target transforms
Chris Lattner365a76e2001-09-10 04:49:44 +00005TOOLLINKOPTS = -ldl
Chris Lattnerc9744e72001-09-07 22:59:25 +00006
Chris Lattner92101ac2001-08-23 17:05:04 +00007include $(LEVEL)/Makefile.common
8
Chris Lattner4a822712001-10-24 19:52:41 +00009all :: $(LEVEL)/tools/Debug/RuntimeLib.bc
10
11Debug/RuntimeLib.c: RuntimeLib.lc
12 cp -f $< $@
13
14Debug/RuntimeLib.o: Debug/RuntimeLib.c
15 /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@
16
17$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o
Chris Lattnere43db882001-10-27 04:15:57 +000018 ../Debug/opt -dce $< -o $@ -f -q
Chris Lattner4a822712001-10-24 19:52:41 +000019
20