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