2001-08-23 17:05:04 +00:00
|
|
|
LEVEL = ../..
|
2001-09-07 22:59:25 +00:00
|
|
|
TOOLNAME = lli
|
2001-10-27 04:15:57 +00:00
|
|
|
USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support \
|
|
|
|
target transforms
|
2001-09-10 04:49:44 +00:00
|
|
|
TOOLLINKOPTS = -ldl
|
2001-08-23 17:05:04 +00:00
|
|
|
|
2001-09-07 22:59:25 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|
2001-08-23 17:05:04 +00:00
|
|
|
|
2001-10-24 19:52:41 +00:00
|
|
|
all :: $(LEVEL)/tools/Debug/RuntimeLib.bc
|
|
|
|
|
|
|
|
Debug/RuntimeLib.c: RuntimeLib.lc
|
|
|
|
cp -f $< $@
|
|
|
|
|
|
|
|
Debug/RuntimeLib.o: Debug/RuntimeLib.c
|
2001-10-27 08:28:11 +00:00
|
|
|
@-rm $@
|
2001-10-24 19:52:41 +00:00
|
|
|
/home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@
|
|
|
|
|
|
|
|
$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o
|
2001-10-27 04:15:57 +00:00
|
|
|
../Debug/opt -dce $< -o $@ -f -q
|
2001-10-24 19:52:41 +00:00
|
|
|
|
|
|
|
|