2003-10-21 06:29:16 +08: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-24 01:05:04 +08:00
|
|
|
LEVEL = ../..
|
2001-09-08 06:59:25 +08:00
|
|
|
TOOLNAME = lli
|
2002-12-24 07:59:41 +08:00
|
|
|
|
2004-10-15 03:01:25 +08:00
|
|
|
# Enable JIT support
|
|
|
|
include ../Makefile.JIT
|
2002-09-14 06:20:19 +08:00
|
|
|
|
|
|
|
# Have gcc tell the linker to export symbols from the program so that
|
|
|
|
# dynamically loaded modules can be linked against them.
|
|
|
|
#
|
2003-06-18 04:09:18 +08:00
|
|
|
TOOLLINKOPTS = $(PLATFORMLIBDL)
|
2001-08-24 01:05:04 +08:00
|
|
|
|
2001-09-08 06:59:25 +08:00
|
|
|
include $(LEVEL)/Makefile.common
|