blob: 0fdcf8b5ddb89c4f112b711b6e45aca4ed86e1a1 [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
Chris Lattnerc2593162001-10-27 08:28:11 +000015 @-rm $@
Chris Lattner4a822712001-10-24 19:52:41 +000016 /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@
17
18$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o
Chris Lattnere43db882001-10-27 04:15:57 +000019 ../Debug/opt -dce $< -o $@ -f -q
Chris Lattner4a822712001-10-24 19:52:41 +000020
21