doc: Add html, pdf.
* GNUmakefile (html, pdf): New target. * .gitignore: Ignore html, pdf targets.
This commit is contained in:
parent
a4943c1db1
commit
7f6676a4c2
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -60,7 +60,9 @@
|
|||
/doc/fosdem/fosdem.tex
|
||||
/doc/fosdem/fosdem.toc
|
||||
/doc/fosdem/fosdem.*vrb
|
||||
/doc/mes
|
||||
/doc/mes.1
|
||||
/doc/mes.info
|
||||
/doc/mes.pdf
|
||||
/doc/mescc.1
|
||||
/doc/version.texi
|
||||
|
|
10
GNUmakefile
10
GNUmakefile
|
@ -125,6 +125,16 @@ src/mes.gcc-out:
|
|||
doc/mescc.1: src/mes.gcc-out scripts/mescc
|
||||
MES_ARENA=10000000 $(HELP2MAN) $< > $@
|
||||
|
||||
html: mes/index.html
|
||||
|
||||
mes/index.html: doc/mes.texi
|
||||
$(MAKEINFO) --html -o doc/mes $<
|
||||
|
||||
pdf: doc/mes.pdf
|
||||
|
||||
doc/mes.pdf: doc/mes.texi
|
||||
$(MAKEINFO) --pdf -o doc/mes.pdf $<
|
||||
|
||||
define HELP_TOP
|
||||
Usage: make [OPTION]... [TARGET]...
|
||||
|
||||
|
|
Loading…
Reference in a new issue