aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-09-18 18:37:08 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-09-18 18:37:08 +0000
commit4b6e5d11987914c4021dbfed37d6bf2026b78cd8 (patch)
treec303ce9c872fac4a2cf341f7a7968a96c94b1756
parent79c980399eac57b9472a12702a313c9ab9c51e00 (diff)
Changed the empty rule for .h files. The rule needs an empty command so that
Make actually uses it to "regenerate" header files that have been moved/removed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8600 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index a76a665604..0787891f7a 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -742,7 +742,7 @@ endif
# which they can be "generated." This allows make to ignore them and
# reproduce the dependency lists.
#
-%.h::
+%.h:: ;
# 'make clean' nukes the tree
clean::