[llvm-commits] CVS: llvm/Makefile.rules
Reid Spencer
reid at x10sys.com
Thu Oct 28 21:47:43 PDT 2004
Changes in directory llvm:
Makefile.rules updated: 1.222 -> 1.223
---
Log message:
Make the list of automatic Makefile* files updated explicit instead of
generally wildcarded.
---
Diffs of the changes: (+2 -2)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.222 llvm/Makefile.rules:1.223
--- llvm/Makefile.rules:1.222 Thu Oct 28 22:46:38 2004
+++ llvm/Makefile.rules Thu Oct 28 23:47:33 2004
@@ -57,8 +57,8 @@
# 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
More information about the llvm-commits
mailing list