mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
5c1c0cb2ac
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26657 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
754 B
Makefile
25 lines
754 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
|
|
@echo Building intrinsics.gen from intrinsics.td
|
|
$(Verb) $(TableGen) $< -o $@ -gen-intrinsic
|
|
|