Use the shared Makefile.JIT for JIT-enablement
[oota-llvm.git] / tools / lli / Makefile
1 ##===- tools/lli/Makefile ------------------------------*- Makefile -*-===##
2
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source License. See LICENSE.TXT for details.
7
8 ##===----------------------------------------------------------------------===##
9 LEVEL = ../..
10 TOOLNAME = lli
11
12 # Enable JIT support
13 include ../Makefile.JIT
14
15 # Have gcc tell the linker to export symbols from the program so that
16 # dynamically loaded modules can be linked against them.
17 #
18 TOOLLINKOPTS = $(PLATFORMLIBDL)
19
20 include $(LEVEL)/Makefile.common