0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-18 19:35:20 +00:00
bird/doc/Makefile
2000-04-17 16:51:28 +00:00

31 lines
333 B
Makefile

# 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 $<