comparison DOCS/Polish/Makefile @ 1661:7a7beab9d7c6

preliminary linuxdoc version of docs in polish. this is not only unfinished but there are some technical problems ( polish national characters in many outputs - dvi, info, html! )
author eyck
date Thu, 23 Aug 2001 13:31:58 +0000
parents
children f217f7ba0736
comparison
equal deleted inserted replaced
1660:0ed5a9568d0f 1661:7a7beab9d7c6
1 #! /bin/make -f
2 #
3 # Makefile to convert the example.sgml
4
5 # old multiple commands way
6 # COMMAND=sgml2
7
8 # new single command approach
9 COMMAND=linuxdoc --backend=
10
11 SOURCE=documentation.sgml
12
13 all: txt html tex dvi ps pdf info lyx rtf
14 echo "all output formats are created!"
15
16
17 txt:
18 $(COMMAND)$@ $(SOURCE)
19
20 html:
21 $(COMMAND)$@ $(SOURCE)
22
23 tex:
24 $(COMMAND)latex -o $@ $(SOURCE)
25
26 dvi:
27 $(COMMAND)latex -o $@ $(SOURCE)
28
29 ps:
30 $(COMMAND)latex -o $@ $(SOURCE)
31
32 pdf:
33 $(COMMAND)latex -o $@ $(SOURCE)
34
35 info:
36 $(COMMAND)$@ $(SOURCE)
37
38 lyx:
39 $(COMMAND)$@ $(SOURCE)
40
41 rtf:
42 $(COMMAND)$@ $(SOURCE)
43
44 clean:
45 rm -f *.txt *.html *.tex *.dvi *.ps *.pdf *.info *.lyx *.rtf
46