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
|
2006-06-01 01:30:27 +00:00
|
|
|
BUILD_ARCHIVE = 1
|
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
|
|
|
|
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)
|
|
|
|
|
2006-07-20 19:08:27 +00:00
|
|
|
$(ObjDir)/Intrinsics.gen.tmp: $(ObjDir)/.dir $(INTRINSICTDS) $(TBLGEN)
|
2006-07-20 16:44:21 +00:00
|
|
|
$(Echo) Building Intrinsics.gen.tmp 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-07-20 16:44:21 +00:00
|
|
|
$(GENFILE): $(ObjDir)/Intrinsics.gen.tmp
|
2006-10-26 01:42:23 +00:00
|
|
|
$(Verb) $(CMP) -s $@ $< || ( $(CP) $< $@ && \
|
|
|
|
$(EchoCmd) Updated Intrinsics.gen because Intrinsics.gen.tmp \
|
|
|
|
changed significantly. )
|
2006-07-20 16:44:21 +00:00
|
|
|
|
2006-03-17 06:27:06 +00:00
|
|
|
install-local:: $(GENFILE)
|
2006-04-14 06:32:31 +00:00
|
|
|
$(Echo) Installing $(PROJ_includedir)/llvm/Intrinsics.gen
|
|
|
|
$(Verb) $(DataInstall) $(GENFILE) $(PROJ_includedir)/llvm/Intrinsics.gen
|