From 85ec003b1d2d5dcd9b1aa850519d0fa1e9df5dfe Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 29 Oct 2004 04:47:33 +0000 Subject: [PATCH] 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 --- Makefile.rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.34.1