diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2015-11-29 09:04:12 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2015-11-29 09:04:12 -0600 |
commit | 794d4fb9628dc3013b94b8c6fa80c02cc664fac9 (patch) | |
tree | 78dc19c2283156eec043094ea203194439c76d08 /Makefile.am | |
parent | f8919ceb386574e7f91545f2ab2d3063ca7c92a4 (diff) | |
download | 8sync-794d4fb9628dc3013b94b8c6fa80c02cc664fac9.tar.gz |
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'
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 13 |
1 files changed, 10 insertions, 3 deletions
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 |