commit | d18ce727e138864c6f40d75924fe0e91e8e454c0 | [log] [tgz] |
---|---|---|
author | Tanya Lattner <tonic@nondot.org> | Mon Jun 09 07:14:31 2008 +0000 |
committer | Tanya Lattner <tonic@nondot.org> | Mon Jun 09 07:14:31 2008 +0000 |
tree | 6aa729dfe128ce4591368b071acc097d29efac89 | |
parent | 7f39fb522b7eb1da03f41407375baba25eaf0d34 [diff] [blame] |
Create dirs as needed. llvm-svn: 52131
diff --git a/llvm/docs/CommandGuide/Makefile b/llvm/docs/CommandGuide/Makefile index a295351..cf77e6a 100644 --- a/llvm/docs/CommandGuide/Makefile +++ b/llvm/docs/CommandGuide/Makefile
@@ -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.