2003-10-20 22:29:16 +00:00
|
|
|
##===- tools/lli/Makefile ------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2001-08-23 17:05:04 +00:00
|
|
|
LEVEL = ../..
|
2001-09-07 22:59:25 +00:00
|
|
|
TOOLNAME = lli
|
2002-12-23 23:59:41 +00:00
|
|
|
|
2004-10-14 19:01:25 +00:00
|
|
|
# Enable JIT support
|
|
|
|
include ../Makefile.JIT
|
2002-09-13 22:20:19 +00:00
|
|
|
|
|
|
|
# Have gcc tell the linker to export symbols from the program so that
|
|
|
|
# dynamically loaded modules can be linked against them.
|
|
|
|
#
|
2003-06-17 20:09:18 +00:00
|
|
|
TOOLLINKOPTS = $(PLATFORMLIBDL)
|
2001-08-23 17:05:04 +00:00
|
|
|
|
2001-09-07 22:59:25 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|