summaryrefslogtreecommitdiffstats
path: root/docs/makedocs.pl
diff options
context:
space:
mode:
Diffstat (limited to 'docs/makedocs.pl')
-rw-r--r--docs/makedocs.pl16
1 files changed, 15 insertions, 1 deletions
diff --git a/docs/makedocs.pl b/docs/makedocs.pl
index 0b1eea47d..2fb0911b2 100644
--- a/docs/makedocs.pl
+++ b/docs/makedocs.pl
@@ -68,6 +68,20 @@ sub MakeDocs($$) {
###############################################################################
chdir dirname($0);
+
+if (!-d 'html') {
+ unlink 'html';
+ mkdir 'html', 0755;
+}
+if (!-d 'txt') {
+ unlink 'txt';
+ mkdir 'txt', 0755;
+}
+if (!-d 'pdf') {
+ unlink 'pdf';
+ mkdir 'pdf', 0755;
+}
+
chdir 'html';
MakeDocs('separate HTML', "jade -t sgml -i html -d $LDP_HOME/ldp.dsl\#html " .
@@ -89,5 +103,5 @@ MakeDocs(undef, 'mv ../xml/Bugzilla-Guide.tex .');
MakeDocs(undef, 'pdfjadetex Bugzilla-Guide.tex');
MakeDocs(undef, 'pdfjadetex Bugzilla-Guide.tex');
MakeDocs(undef, 'pdfjadetex Bugzilla-Guide.tex');
-MakeDocs(undef, 'rm Bugzilla-Guide.tex Bugzilla-Guide.log Bugzilla-Guide.aux');
+MakeDocs(undef, 'rm Bugzilla-Guide.tex Bugzilla-Guide.log Bugzilla-Guide.aux Bugzilla-Guide.out');