summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Makefile
blob: 6d0df1155027e30578ec1d6911f7a238feda2724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
LEVEL = ../..
TOOLNAME = lli
PARALLEL_DIRS = Interpreter JIT

# Get the config name...
include $(LEVEL)/Makefile.$(shell uname)

# Generic JIT libraries
JITLIBS   = lli-jit codegen
ARCHLIBS  =

# What the X86 JIT requires
JITLIBS  += x86
# X86 doesn't require any ARCHLIBS



# What the Sparc JIT requires
ifeq ($(ARCH),Sparc)
JITLIBS  += sparc 
ARCHLIBS  = sched livevar instrument.a profpaths transformutils.a \
           bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \
           mapping select postopts.a preopts

endif

USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) bcreader vmcore scalaropts.a \
           analysis.a support.a target.a

# Have gcc tell the linker to export symbols from the program so that
# dynamically loaded modules can be linked against them.
#
TOOLLINKOPTS = -ldl

include $(LEVEL)/Makefile.common