b177724896
All documentation is built in obj/doc (resp. doc/ if you do a stand-alone build). Use `make docs' to make the whole documentation or `make userdocs' resp. `make progdocs' for user manual resp. developer's guide.
28 lines
324 B
Makefile
28 lines
324 B
Makefile
root-rel=../
|
|
dir-name=doc
|
|
|
|
include ../Rules
|
|
|
|
progdocs:
|
|
mkdir -p prog
|
|
$(srcdir)/tools/progdoc $(srcdir_abs)
|
|
|
|
userdocs:
|
|
|
|
%.html: %.sgml
|
|
./sgml2html $<
|
|
|
|
%.info: %.sgml
|
|
sgml2info $<
|
|
|
|
%.txt: %.sgml
|
|
sgml2txt $<
|
|
|
|
%.dvi: %.sgml
|
|
./sgml2latex $<
|
|
|
|
%.tex: %.sgml
|
|
./sgml2latex --output=tex $<
|
|
|
|
clean:
|
|
rm *.html *.tex *.dvi *.log
|