[llvm-commits] [llvm] r52130 - /llvm/branches/release_23/docs/CommandGuide/Makefile
Tanya Lattner
tonic at nondot.org
Mon Jun 9 00:13:46 PDT 2008
Author: tbrethou
Date: Mon Jun 9 02:13:45 2008
New Revision: 52130
URL: http://llvm.org/viewvc/llvm-project?rev=52130&view=rev
Log:
Fix broken makefile.
Modified:
llvm/branches/release_23/docs/CommandGuide/Makefile
Modified: llvm/branches/release_23/docs/CommandGuide/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_23/docs/CommandGuide/Makefile?rev=52130&r1=52129&r2=52130&view=diff
==============================================================================
--- llvm/branches/release_23/docs/CommandGuide/Makefile (original)
+++ llvm/branches/release_23/docs/CommandGuide/Makefile Mon Jun 9 02:13:45 2008
@@ -23,6 +23,12 @@
clean:
rm -f pod2htm*.*~~ $(HTML) $(MAN) $(PS)
+
+# To create other directories, as needed, and timestamp their creation
+%/.dir:
+ -mkdir $* > /dev/null
+ date > $@
+
else
# Otherwise, if not in BUILD_FOR_WEBSITE mode, use the project info.
More information about the llvm-commits
mailing list