bird/doc/Makefile
2000-04-28 09:48:01 +00:00

34 lines
438 B
Makefile

# Makefile for bird documentation system
SHELL = /bin/sh
all: bird.html internals.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 $<
internals.html: ../filter/filter.c
kernel-doc -html ../filter/filter.c > internals.html