2003-10-21 00:26:57 +02:00
|
|
|
##===- lib/VMCore/Makefile ------------------------------*- Makefile -*-===##
|
2009-01-09 17:44:42 +01:00
|
|
|
#
|
2003-10-21 00:26:57 +02:00
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 21:09:26 +01:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2009-01-09 17:44:42 +01:00
|
|
|
#
|
2003-10-21 00:26:57 +02:00
|
|
|
##===----------------------------------------------------------------------===##
|
2001-06-06 22:29:01 +02:00
|
|
|
LEVEL = ../..
|
2004-10-28 01:18:45 +02:00
|
|
|
LIBRARYNAME = LLVMCore
|
2006-06-01 03:30:27 +02:00
|
|
|
BUILD_ARCHIVE = 1
|
2005-08-14 17:14:34 +02:00
|
|
|
|
2008-03-25 10:12:48 +01:00
|
|
|
BUILT_SOURCES = $(PROJ_OBJ_ROOT)/include/llvm/Intrinsics.gen
|
2006-03-09 20:53:27 +01:00
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
2008-03-25 10:12:48 +01:00
|
|
|
GENFILE:=$(PROJ_OBJ_ROOT)/include/llvm/Intrinsics.gen
|
2006-03-17 07:27:06 +01:00
|
|
|
|
2006-03-26 09:45:48 +02:00
|
|
|
INTRINSICTD := $(PROJ_SRC_ROOT)/include/llvm/Intrinsics.td
|
|
|
|
INTRINSICTDS := $(wildcard $(PROJ_SRC_ROOT)/include/llvm/Intrinsics*.td)
|
|
|
|
|
2006-07-20 21:08:27 +02:00
|
|
|
$(ObjDir)/Intrinsics.gen.tmp: $(ObjDir)/.dir $(INTRINSICTDS) $(TBLGEN)
|
2006-07-20 18:44:21 +02:00
|
|
|
$(Echo) Building Intrinsics.gen.tmp from Intrinsics.td
|
2008-01-15 23:50:50 +01:00
|
|
|
$(Verb) $(TableGen) $(call SYSPATH, $(INTRINSICTD)) -o $(call SYSPATH, $@) -gen-intrinsic
|
2006-03-09 20:53:27 +01:00
|
|
|
|
2006-07-20 18:44:21 +02:00
|
|
|
$(GENFILE): $(ObjDir)/Intrinsics.gen.tmp
|
2006-10-26 03:42:23 +02:00
|
|
|
$(Verb) $(CMP) -s $@ $< || ( $(CP) $< $@ && \
|
|
|
|
$(EchoCmd) Updated Intrinsics.gen because Intrinsics.gen.tmp \
|
|
|
|
changed significantly. )
|
2006-07-20 18:44:21 +02:00
|
|
|
|
2006-03-17 07:27:06 +01:00
|
|
|
install-local:: $(GENFILE)
|
2006-04-14 08:32:31 +02:00
|
|
|
$(Echo) Installing $(PROJ_includedir)/llvm/Intrinsics.gen
|
|
|
|
$(Verb) $(DataInstall) $(GENFILE) $(PROJ_includedir)/llvm/Intrinsics.gen
|