Mercurial > mplayer.hg
annotate DOCS/Polish/Makefile @ 2713:d5af4a6afa4c
updated
author | arpi |
---|---|
date | Mon, 05 Nov 2001 14:56:18 +0000 |
parents | f217f7ba0736 |
children |
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 | 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 |