X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FVMCore%2FMakefile;h=59062a18038beb6c808f406de489cc9ea35a90d1;hb=ebcba612b537f45a033ccd9a60bee0c45e2e2ded;hp=4117feff9f54215d898540c62b873dfed4460a01;hpb=80c2c9224f443b59b699f355c60eb681867a4ff8;p=oota-llvm.git diff --git a/lib/VMCore/Makefile b/lib/VMCore/Makefile index 4117feff9f5..59062a18038 100644 --- a/lib/VMCore/Makefile +++ b/lib/VMCore/Makefile @@ -2,23 +2,32 @@ # # 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. +# This file 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 + +BUILT_SOURCES = $(PROJ_OBJ_ROOT)/include/llvm/Intrinsics.gen 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 +GENFILE:=$(PROJ_OBJ_ROOT)/include/llvm/Intrinsics.gen + +INTRINSICTD := $(PROJ_SRC_ROOT)/include/llvm/Intrinsics.td +INTRINSICTDS := $(wildcard $(PROJ_SRC_ROOT)/include/llvm/Intrinsics*.td) + +$(ObjDir)/Intrinsics.gen.tmp: $(ObjDir)/.dir $(INTRINSICTDS) $(TBLGEN) + $(Echo) Building Intrinsics.gen.tmp from Intrinsics.td + $(Verb) $(TableGen) $(call SYSPATH, $(INTRINSICTD)) -o $(call SYSPATH, $@) -gen-intrinsic + +$(GENFILE): $(ObjDir)/Intrinsics.gen.tmp + $(Verb) $(CMP) -s $@ $< || ( $(CP) $< $@ && \ + $(EchoCmd) Updated Intrinsics.gen because Intrinsics.gen.tmp \ + changed significantly. ) +install-local:: $(GENFILE) + $(Echo) Installing $(PROJ_includedir)/llvm/Intrinsics.gen + $(Verb) $(DataInstall) $(GENFILE) $(PROJ_includedir)/llvm/Intrinsics.gen