diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-06-09 07:13:45 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-06-09 07:13:45 +0000 |
commit | 379f6c725a8c3261daf0e972bbe827b4c0538d1f (patch) | |
tree | 08bb99acb65fdc21d7b676ba9d0f382086b8384e | |
parent | Merge from mainline. (diff) | |
download | llvm-project-llvmorg-2.3.0.tar.gz llvm-project-llvmorg-2.3.0.tar.bz2 llvm-project-llvmorg-2.3.0.zip |
Fix broken makefile.llvmorg-2.3.0release/2.3.x
llvm-svn: 52130
-rw-r--r-- | llvm/docs/CommandGuide/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/Makefile b/llvm/docs/CommandGuide/Makefile index a2953512b819..cf77e6a33db0 100644 --- a/llvm/docs/CommandGuide/Makefile +++ b/llvm/docs/CommandGuide/Makefile @@ -23,6 +23,12 @@ all:: html man ps 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. |