* Make pointer values work better by treating them uniformly as 64 bit values.
[oota-llvm.git] / tools / lli / Makefile
1 LEVEL = ../..
2 TOOLNAME = lli
3 USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support \
4            target transforms
5 TOOLLINKOPTS = -ldl
6
7 include $(LEVEL)/Makefile.common
8
9 all :: $(LEVEL)/tools/Debug/RuntimeLib.bc
10
11 Debug/RuntimeLib.c: RuntimeLib.lc
12         cp -f $< $@
13
14 Debug/RuntimeLib.o: Debug/RuntimeLib.c
15         @-rm $@
16         /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@
17
18 $(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o
19         ../Debug/opt -dce $< -o $@ -f -q
20
21