mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
1768e6c7b3
llvm-svn: 26662
25 lines
764 B
Makefile
25 lines
764 B
Makefile
##===- lib/VMCore/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.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
LEVEL = ../..
|
|
LIBRARYNAME = LLVMCore
|
|
|
|
BUILT_SOURCES = $(LEVEL)/include/llvm/Intrinsics.gen
|
|
|
|
include $(LEVEL)/Makefile.config
|
|
ifeq ($(ARCH),Alpha)
|
|
BUILD_ARCHIVE = 1
|
|
endif
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
$(LEVEL)/include/llvm/Intrinsics.gen: $(LEVEL)/include/llvm/Intrinsics.td $(TBLGEN)
|
|
@echo Building Intrinsics.gen from Intrinsics.td
|
|
$(Verb) $(TableGen) $< -o $@ -gen-intrinsic
|
|
|