From 794d4fb9628dc3013b94b8c6fa80c02cc664fac9 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sun, 29 Nov 2015 09:04:12 -0600 Subject: [PATCH] Successfully build doc/8sync.texi skeleton manual * doc/Makefile.am: Removed file * Makefile.am: Added commands to build texinfo files (info_TEXINFOS, 8sync_TEXINFOS, dvi-local): New variables. * .gitignore: Ignore *.info and texinfo.tex files * doc/8sync.texi: Fixed @ escaping and removed unused `@end' --- .gitignore | 2 ++ Makefile.am | 13 ++++++++++--- doc/8sync.texi | 4 +--- doc/Makefile.am | 8 -------- 4 files changed, 13 insertions(+), 14 deletions(-) delete mode 100644 doc/Makefile.am diff --git a/.gitignore b/.gitignore index ba63885..e3bd91e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,9 +2,11 @@ .#* *.go *.log +*.info autom4te.cache/ Makefile Makefile.in +texinfo.tex /configure /env /config.status diff --git a/Makefile.am b/Makefile.am index ce53918..01d913c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -72,6 +72,8 @@ EXTRA_DIST = \ tests/utils.scm +## Make changelog on demand + dist-hook: gen-ChangeLog # gen-AUTHORS might be useful to borrow from Guix @@ -83,6 +85,11 @@ gen-ChangeLog: mv $(distdir)/cl-t $(distdir)/ChangeLog; \ fi -SUBDIRS = \ - doc -# demos +## Texinfo stuff + +info_TEXINFOS = doc/8sync.texi + +8sync_TEXINFOS = \ + doc/fdl.texi + +dvi-local: # Skip dvi docs diff --git a/doc/8sync.texi b/doc/8sync.texi index 7ddc4aa..46ebac6 100644 --- a/doc/8sync.texi +++ b/doc/8sync.texi @@ -4,7 +4,7 @@ @settitle 8sync @c %**end of header @copying -Copyright @copyright{} 2015 Christopher Allan Webber @email{cwebber@dustycloud.org} +Copyright @copyright{} 2015 Christopher Allan Webber @email{cwebber@@dustycloud.org} @end copying @quotation @@ -37,8 +37,6 @@ Foundation Web site at @url{http://www.gnu.org/licenses/lgpl.html}. @insertcopying @end titlepage -@end ifnottex - @c Output the table of the contents at the beginning. @contents diff --git a/doc/Makefile.am b/doc/Makefile.am deleted file mode 100644 index e064370..0000000 --- a/doc/Makefile.am +++ /dev/null @@ -1,8 +0,0 @@ -AUTOMAKE_OPTIONS = gnu - -info_TEXINFOS = 8sync.texi - -8sync_TEXINFOS = \ - fdl.texi - -dvi: # Skip dvi docs -- 2.31.1