From 525f640c4eda5c7cb96fe65c23a94ff368039590 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Sun, 24 Jul 2011 16:00:35 -0700 Subject: [PATCH] Clean and ignore additional build files for DocBook documentation Depending on what generation method is used for the DocBook documentation, additional build files may be created. One of those (*.aux) will cause the build to break if one switches from docbook2pdf to dblatex without deleting it. Update make clean and .gitignore to remove and ignore these additional files. Change-Id: I13cc8a3526bd7bc7c4c65cd7d2cd78b094398faa Reviewed-on: http://gerrit.openafs.org/5089 Tested-by: Derrick Brashear Reviewed-by: Derrick Brashear --- doc/xml/AdminGuide/.gitignore | 9 +++++++-- doc/xml/AdminGuide/Makefile.in | 2 +- doc/xml/QuickStartUnix/.gitignore | 7 +++++++ doc/xml/QuickStartUnix/Makefile.in | 2 +- doc/xml/UserGuide/.gitignore | 8 +++++++- doc/xml/UserGuide/Makefile.in | 2 +- 6 files changed, 24 insertions(+), 6 deletions(-) diff --git a/doc/xml/AdminGuide/.gitignore b/doc/xml/AdminGuide/.gitignore index 7a4434120..0b4cb4ed5 100644 --- a/doc/xml/AdminGuide/.gitignore +++ b/doc/xml/AdminGuide/.gitignore @@ -2,11 +2,16 @@ # git ls-files -i --exclude-standard # to check that you haven't inadvertently ignored any tracked files. +*.aux +*.chm +*.epub *.html +*.fo +*.log +*.mobi +*.out *.pdf -*.chm version.xml htmlhelp.hhp index.hhk toc.hhc - diff --git a/doc/xml/AdminGuide/Makefile.in b/doc/xml/AdminGuide/Makefile.in index 33d0dc86b..8bcc3322a 100644 --- a/doc/xml/AdminGuide/Makefile.in +++ b/doc/xml/AdminGuide/Makefile.in @@ -56,4 +56,4 @@ check: xmllint --noout --valid $(BOOK).xml clean: - rm -f *.html *.pdf + rm -f *.aux *.epub *.fo *.html *.log *.mobi *.out *.pdf diff --git a/doc/xml/QuickStartUnix/.gitignore b/doc/xml/QuickStartUnix/.gitignore index 563333e3b..7815d36bb 100644 --- a/doc/xml/QuickStartUnix/.gitignore +++ b/doc/xml/QuickStartUnix/.gitignore @@ -2,6 +2,13 @@ # git ls-files -i --exclude-standard # to check that you haven't inadvertently ignored any tracked files. +*.aux +*.chm +*.epub *.html +*.fo +*.log +*.mobi +*.out *.pdf version.xml diff --git a/doc/xml/QuickStartUnix/Makefile.in b/doc/xml/QuickStartUnix/Makefile.in index 73516453f..594bc6cc2 100644 --- a/doc/xml/QuickStartUnix/Makefile.in +++ b/doc/xml/QuickStartUnix/Makefile.in @@ -54,4 +54,4 @@ check: xmllint --noout --valid $(BOOK).xml clean: - rm -f *.html *.pdf + rm -f *.aux *.epub *.fo *.html *.log *.mobi *.out *.pdf diff --git a/doc/xml/UserGuide/.gitignore b/doc/xml/UserGuide/.gitignore index e436b470d..7815d36bb 100644 --- a/doc/xml/UserGuide/.gitignore +++ b/doc/xml/UserGuide/.gitignore @@ -2,7 +2,13 @@ # git ls-files -i --exclude-standard # to check that you haven't inadvertently ignored any tracked files. +*.aux +*.chm +*.epub *.html +*.fo +*.log +*.mobi +*.out *.pdf -*.chm version.xml diff --git a/doc/xml/UserGuide/Makefile.in b/doc/xml/UserGuide/Makefile.in index 4757ccd92..42e40532a 100644 --- a/doc/xml/UserGuide/Makefile.in +++ b/doc/xml/UserGuide/Makefile.in @@ -53,4 +53,4 @@ check: xmllint --noout --valid $(BOOK).xml clean: - rm -f *.html *.pdf + rm -f *.aux *.epub *.fo *.html *.log *.mobi *.out *.pdf -- 2.39.5