diff options
author | Martin Mares <mj@ucw.cz> | 2000-05-31 13:35:47 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-05-31 13:35:47 +0200 |
commit | 46527a939e97a8a0d6d023ad7853e5e9a2df1ea9 (patch) | |
tree | 25952d3992acd188715012deac066eb94eb61217 /doc | |
parent | fcb5f4a725c9edecca7d4646c633e42f66ab53b6 (diff) | |
download | bird-46527a939e97a8a0d6d023ad7853e5e9a2df1ea9.tar bird-46527a939e97a8a0d6d023ad7853e5e9a2df1ea9.zip |
Modified the Makefile to work in the source tree.
From now, you can just `make userdocs' in doc, no need to use ugly scripts.
Also, `make progdocs' builds the programmer's documentation in HTML,
LaTeX version to come later.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/doc/Makefile b/doc/Makefile index 065323d..9346b7d 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,10 +1,21 @@ root-rel=../ dir-name=doc +ifneq ($(wildcard ../Rules),) include ../Rules +else +srcdir=$(shell cd $(root-rel) ; pwd) +srcdir_abs=$(srcdir) +endif -progdocs: - mkdir -p prog +# Force rebuilds +.PHONY: prog.sgml bird.sgml + +docs: progdocs userdocs + +progdocs: prog.html + +prog.sgml: $(srcdir)/tools/progdoc $(srcdir_abs) %.html: %.sgml @@ -13,16 +24,17 @@ progdocs: %.info: %.sgml sgml2info $< -%.txt: %.sgml - sgml2txt $< - %.dvi: %.sgml ./sgml2latex $< %.tex: %.sgml ./sgml2latex --output=tex $< -userdocs: bird.html bird.dvi +%.txt: %.sgml + ./sgml2txt $< + +userdocs: bird.html bird.dvi bird.txt clean: - rm *.html *.tex *.dvi *.log + rm -f *.html *.tex *.dvi *.log *.ps *.txt + rm -f prog.sgml |