2003-10-20 22:26:57 +00:00
|
|
|
##===- 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.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2001-06-06 20:29:01 +00:00
|
|
|
LEVEL = ../..
|
2004-10-27 23:18:45 +00:00
|
|
|
LIBRARYNAME = LLVMCore
|
2005-08-14 15:14:34 +00:00
|
|
|
|
2006-03-17 07:39:44 +00:00
|
|
|
BUILT_SOURCES = $(PROJ_SRC_ROOT)/include/llvm/Intrinsics.gen
|
2006-03-09 19:53:27 +00:00
|
|
|
|
2005-08-14 15:14:34 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
ifeq ($(ARCH),Alpha)
|
2005-08-13 05:09:50 +00:00
|
|
|
BUILD_ARCHIVE = 1
|
2005-08-14 15:14:34 +00:00
|
|
|
endif
|
2005-08-13 05:09:50 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
2006-03-17 06:27:06 +00:00
|
|
|
GENFILE:=$(PROJ_SRC_ROOT)/include/llvm/Intrinsics.gen
|
|
|
|
|
2006-03-26 07:45:48 +00:00
|
|
|
INTRINSICTD := $(PROJ_SRC_ROOT)/include/llvm/Intrinsics.td
|
|
|
|
INTRINSICTDS := $(wildcard $(PROJ_SRC_ROOT)/include/llvm/Intrinsics*.td)
|
|
|
|
|
|
|
|
$(GENFILE): $(INTRINSICTDS) $(TBLGEN)
|
2006-03-13 17:57:31 +00:00
|
|
|
$(Echo) Building Intrinsics.gen from Intrinsics.td
|
2006-03-26 07:45:48 +00:00
|
|
|
$(Verb) $(TableGen) $(INTRINSICTD) -o $@ -gen-intrinsic
|
2006-03-09 19:53:27 +00:00
|
|
|
|
2006-03-17 06:27:06 +00:00
|
|
|
install-local:: $(GENFILE)
|
|
|
|
$(DataInstall) $(GENFILE) $(PROJ_includedir)/llvm/Intrinsics.gen
|