blob: 3e3f0b0d9e914790169dceedaeeac113d4f2edb0 [file] [log] [blame]
Chris Lattner92101ac2001-08-23 17:05:04 +00001LEVEL = ../..
Chris Lattnerc9744e72001-09-07 22:59:25 +00002TOOLNAME = lli
Chris Lattner8efb9d72002-01-21 23:13:46 +00003USEDLIBS = bcreader bcwriter vmcore asmwriter analysis support \
Chris Lattnere43db882001-10-27 04:15:57 +00004 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
Chris Lattnere20bcd82001-12-13 00:44:23 +000014Debug/RuntimeLib.ll: Debug/RuntimeLib.c
Chris Lattnerc2593162001-10-27 08:28:11 +000015 @-rm $@
Chris Lattnere20bcd82001-12-13 00:44:23 +000016 /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -S -o $@
Chris Lattner4a822712001-10-24 19:52:41 +000017
Chris Lattnere20bcd82001-12-13 00:44:23 +000018$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.ll
Chris Lattner8efb9d72002-01-21 23:13:46 +000019 LD_LIBRARY_PATH=../lib/Debug:/usr/dcs/software/evaluation/encap/gcc-3.0.2/lib/ ../Debug/gccas $< -o $@
Chris Lattner4a822712001-10-24 19:52:41 +000020
21