From 379f6c725a8c3261daf0e972bbe827b4c0538d1f Mon Sep 17 00:00:00 2001
From: Tanya Lattner <tonic@nondot.org>
Date: Mon, 9 Jun 2008 07:13:45 +0000
Subject: [PATCH] Fix broken makefile.

llvm-svn: 52130
---
 llvm/docs/CommandGuide/Makefile | 6 ++++++
 1 file changed, 6 insertions(+)

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.
-- 
GitLab