forked from OSchip/llvm-project
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. llvm-svn: 7183
This commit is contained in:
parent
d49975cf29
commit
af4d13026c
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue