bird/doc/Makefile
Martin Mares b177724896 Connected the `doc' subtree to global makefiles.
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.
2000-05-05 17:15:56 +00:00

29 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