diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-29 04:47:33 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-29 04:47:33 +0000 |
commit | 85ec003b1d2d5dcd9b1aa850519d0fa1e9df5dfe (patch) | |
tree | 6cb8bb90ecc8bad7c1e0afa47cf8cb1802b07459 | |
parent | b0e7e45ffb86779cd9a4da7f383ec947fab2ff75 (diff) |
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
-rw-r--r-- | Makefile.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules index 21c65bb6a0..3247755976 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 |