diff options
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/doc/Makefile b/doc/Makefile index fe263be..f16de99 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,34 +1,28 @@ -# Makefile for bird documentation system +root-rel=../ +dir-name=doc +include ../Rules -SHELL = /bin/sh +progdocs: + mkdir -p prog + $(srcdir)/tools/progdoc $(srcdir_abs) -all: internals.html -# bird.html - -clean: - rm *.html *.tex *.dvi *.log +userdocs: %.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 $< -internals.html: ../filter/filter.c ../proto/rip/rip.c - kernel-doc -html ../filter/filter.c ../proto/rip/rip.c > internals.html +clean: + rm *.html *.tex *.dvi *.log |