1 ##===- tools/lli/Makefile ------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 ##===----------------------------------------------------------------------===##
13 PARALLEL_DIRS := ChildTarget
15 include $(LEVEL)/Makefile.config
17 LINK_COMPONENTS := mcjit instrumentation interpreter nativecodegen bitreader asmparser irreader selectiondag native
19 # If Intel JIT Events support is confiured, link against the LLVM Intel JIT
20 # Events interface library
21 ifeq ($(USE_INTEL_JITEVENTS), 1)
22 LINK_COMPONENTS += debuginfo inteljitevents object
25 # If oprofile support is confiured, link against the LLVM oprofile interface
27 ifeq ($(USE_OPROFILE), 1)
28 LINK_COMPONENTS += oprofilejit
31 include $(LLVM_SRC_ROOT)/Makefile.rules