From: Reid Spencer Date: Fri, 29 Oct 2004 04:47:33 +0000 (+0000) Subject: Make the list of automatic Makefile* files updated explicit instead of X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=85ec003b1d2d5dcd9b1aa850519d0fa1e9df5dfe;p=oota-llvm.git Make the list of automatic Makefile* files updated explicit instead of generally wildcarded. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17334 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index 21c65bb6a0b..32477559769 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -57,8 +57,8 @@ $(USER_TARGETS):: # PRECONDITIONS: that which must be built/checked first ################################################################################ -SRCMKFILES := $(BUILD_SRC_DIR)/Makefile $(filter-out Makefile.rules %.in,\ - $(wildcard $(BUILD_SRC_DIR)/Makefile.*)) +SRCMKFILES := $(filter %Makefile %Makefile.rules %Makefile.tests \ + %Makefile.JIT,$(wildcard $(BUILD_SRC_DIR)/Makefile*)) OBJMKFILES := $(subst $(BUILD_SRC_DIR),$(BUILD_OBJ_DIR),$(SRCMKFILES)) CONFIGURE := $(LLVM_SRC_ROOT)/configure CONFIG_STATUS := $(LLVM_OBJ_ROOT)/config.status