[llvm-commits] CVS: llvm/Makefile.common

John Criswell criswell at choi.cs.uiuc.edu
Wed Jul 16 15:27:01 PDT 2003


Changes in directory llvm:

Makefile.common updated: 1.100 -> 1.101

---
Log message:

Marked some of the phony targets are PHONY.  This will hopefully speed
up builds a little bit since it will prevent GNU make from matching these
phony targets against implicit rules.



---
Diffs of the changes:

Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.100 llvm/Makefile.common:1.101
--- llvm/Makefile.common:1.100	Mon Jul 14 12:26:16 2003
+++ llvm/Makefile.common	Wed Jul 16 15:26:06 2003
@@ -162,6 +162,13 @@
 	echo "LLVM  Source Root: " $(LLVM_SRC_ROOT);
 	echo "LLVM  Object Root: " $(LLVM_OBJ_ROOT);
 
+#
+# Mark all of these targets as phony.  This will hopefully speed up builds
+# slightly since GNU Make will not try to find implicit rules for targets
+# which are marked as Phony.
+#
+.PHONY: all dynamic clean distclean install test bytecode prdirs
+
 ###########################################################################
 # Miscellaneous paths and commands:
 #	This section defines various configuration macros, such as where





More information about the llvm-commits mailing list