mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
07e209b7b0
llvm-svn: 65826
63 lines
1.6 KiB
Makefile
63 lines
1.6 KiB
Makefile
##===- tools/llvmc/Makefile --------------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open
|
|
# Source License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ../..
|
|
|
|
#ifndef LLVMC_PLUGIN
|
|
|
|
# The current plan is to make the user copy the skeleton project and change only
|
|
# this file (and plugins/UserPlugin, of course).
|
|
|
|
export LLVMC_BASED_DRIVER_NAME = llvmc
|
|
export LLVMC_BUILTIN_PLUGINS = Base Clang
|
|
|
|
DIRS = plugins driver
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
else # LLVMC_PLUGIN
|
|
|
|
# We are included from plugins/PluginName/Makefile...
|
|
# TODO: This part must be merged into Makefile.rules.
|
|
|
|
LEVEL = ../../../..
|
|
|
|
LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
|
|
REQUIRES_EH := 1
|
|
|
|
# Build a dynamic library if the user runs `make` from plugins/PluginName
|
|
ifndef LLVMC_BUILTIN_PLUGIN
|
|
LOADABLE_MODULE = 1
|
|
endif
|
|
|
|
# TableGen stuff...
|
|
ifneq ($(BUILT_SOURCES),)
|
|
BUILD_AUTOGENERATED_INC=1
|
|
endif
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
ifdef BUILD_AUTOGENERATED_INC
|
|
|
|
TOOLS_SOURCE := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td))
|
|
|
|
TD_COMMON :=$(strip $(wildcard \
|
|
$(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
|
|
|
|
$(ObjDir)/AutoGenerated.inc.tmp: $(TOOLS_SOURCE) $(ObjDir)/.dir \
|
|
$(TBLGEN) $(TD_COMMON)
|
|
$(Echo) "Building LLVMC configuration library with tblgen"
|
|
$(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
|
|
|
|
AutoGenerated.inc : $(ObjDir)/AutoGenerated.inc.tmp
|
|
$(Verb) $(CMP) -s $@ $< || $(CP) $< $@
|
|
endif # BUILD_AUTOGENERATED_INC
|
|
|
|
endif # LLVMC_PLUGIN
|