blob: 6652113eac0bbb38aa3d7c7dc34af6f86ca1b2ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
root-rel=../
dir-name=doc
progdocs:
mkdir -p prog
$(srcdir)/tools/progdoc $(srcdir_abs)
userdocs:
%.html: %.sgml
./sgml2html $<
%.info: %.sgml
sgml2info $<
%.txt: %.sgml
sgml2txt $<
%.dvi: %.sgml
./sgml2latex $<
%.tex: %.sgml
./sgml2latex --output=tex $<
clean:
rm *.html *.tex *.dvi *.log
|