2000-04-18 00:51:28 +08:00
|
|
|
# Makefile for bird documentation system
|
|
|
|
|
|
|
|
|
|
|
|
SHELL = /bin/sh
|
|
|
|
|
2000-04-28 17:55:36 +08:00
|
|
|
all: internals.html
|
|
|
|
# bird.html
|
2000-04-18 00:51:28 +08:00
|
|
|
|
|
|
|
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 $<
|
2000-04-28 17:48:01 +08:00
|
|
|
|
2000-04-28 17:55:36 +08:00
|
|
|
internals.html: ../filter/filter.c ../proto/rip/rip.c
|
|
|
|
kernel-doc -html ../filter/filter.c ../proto/rip/rip.c > internals.html
|