blob: 54f675c28c9a5aff57374ad17dd7b419697a4994 [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
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
19 ../Debug/gccas $< -o $@
Chris Lattner4a822712001-10-24 19:52:41 +000020
21