summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-07-16 20:26:06 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-07-16 20:26:06 +0000
commit96914390e6df230aa8226828f09d0bff20b8a8b7 (patch)
treebaa82daa0be09b9c79d0691f9aeb27a534244bb7 /Makefile.common
parent2c4fe5813c5414ff8d142ef278587689ceda328c (diff)
downloadllvm-96914390e6df230aa8226828f09d0bff20b8a8b7.tar.gz
llvm-96914390e6df230aa8226828f09d0bff20b8a8b7.tar.bz2
llvm-96914390e6df230aa8226828f09d0bff20b8a8b7.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7183 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common
index f3316ba962..afe6990256 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -162,6 +162,13 @@ prdirs::
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