diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-04-17 18:51:28 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-04-17 18:51:28 +0200 |
commit | 52276996063bc4a0fbcb642f5075df1cde7ce684 (patch) | |
tree | d6ed25a20dac50e810c4f7d075275c423a196024 /doc/Makefile | |
parent | f9b8bcca4eb1fdd8067a66a845b585af61335e3c (diff) | |
download | bird-52276996063bc4a0fbcb642f5075df1cde7ce684.tar bird-52276996063bc4a0fbcb642f5075df1cde7ce684.zip |
Few bugs removed from sgml, makefile added.
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..cef98bf --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,30 @@ +# Makefile for bird documentation system + + +SHELL = /bin/sh + +all: bird.html + +clean: + rm *.html *.tex *.dvi *.log + +%.html: %.sgml + ./sgml2html $< + +dnl INFO format: + +%.info: %.sgml + sgml2info $< + +dnl TXT format: + +%.txt: %.sgml + sgml2txt $< + +dnl LATEX format: + +%.dvi: %.sgml + ./sgml2latex $< + +%.tex: %.sgml + ./sgml2latex --output=tex $< |