annotate DOCS/Polish/Makefile @ 1988:f21bf0842a55

reviewed for release : round 2
author gabucino
date Thu, 27 Sep 2001 16:16:08 +0000
parents f217f7ba0736
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1661
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
1 #! /bin/make -f
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
2 #
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
3 # Makefile to convert the example.sgml
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
4
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
5 # old multiple commands way
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
6 # COMMAND=sgml2
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
7
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
8 # new single command approach
1665
f217f7ba0736 html in single file.
eyck
parents: 1661
diff changeset
9 COMMAND=linuxdoc --charset=latin --language=pl --split=0 --backend=
1661
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
10
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
11 SOURCE=documentation.sgml
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
12
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
13 all: txt html tex dvi ps pdf info lyx rtf
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
14 echo "all output formats are created!"
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
15
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
16
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
17 txt:
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
18 $(COMMAND)$@ $(SOURCE)
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
19
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
20 html:
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
21 $(COMMAND)$@ $(SOURCE)
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
22
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
23 tex:
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
24 $(COMMAND)latex -o $@ $(SOURCE)
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
25
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
26 dvi:
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
27 $(COMMAND)latex -o $@ $(SOURCE)
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
28
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
29 ps:
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
30 $(COMMAND)latex -o $@ $(SOURCE)
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
31
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
32 pdf:
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
33 $(COMMAND)latex -o $@ $(SOURCE)
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
34
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
35 info:
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
36 $(COMMAND)$@ $(SOURCE)
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
37
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
38 lyx:
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
39 $(COMMAND)$@ $(SOURCE)
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
40
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
41 rtf:
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
42 $(COMMAND)$@ $(SOURCE)
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
43
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
44 clean:
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
45 rm -f *.txt *.html *.tex *.dvi *.ps *.pdf *.info *.lyx *.rtf
7a7beab9d7c6 preliminary linuxdoc version of docs in polish. this is not only unfinished
eyck
parents:
diff changeset
46