summaryrefslogtreecommitdiffstats
path: root/DOCS/Polish/Makefile
diff options
context:
space:
mode:
authoreyck <eyck@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-23 13:31:58 +0000
committereyck <eyck@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-23 13:31:58 +0000
commitae01bb3f31f116d44079a01618869985883d50dc (patch)
tree3d9fd9f4d3557dd01eecbc544633198a3c9f8274 /DOCS/Polish/Makefile
parentded26abc3a09d201c8112608bbe1e28432b5b59a (diff)
downloadmpv-ae01bb3f31f116d44079a01618869985883d50dc.tar.bz2
mpv-ae01bb3f31f116d44079a01618869985883d50dc.tar.xz
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! ) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1662 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/Polish/Makefile')
-rw-r--r--DOCS/Polish/Makefile46
1 files changed, 46 insertions, 0 deletions
diff --git a/DOCS/Polish/Makefile b/DOCS/Polish/Makefile
new file mode 100644
index 0000000000..391ab63714
--- /dev/null
+++ b/DOCS/Polish/Makefile
@@ -0,0 +1,46 @@
+#! /bin/make -f
+#
+# Makefile to convert the example.sgml
+
+# old multiple commands way
+# COMMAND=sgml2
+
+# new single command approach
+COMMAND=linuxdoc --backend=
+
+SOURCE=documentation.sgml
+
+all: txt html tex dvi ps pdf info lyx rtf
+ echo "all output formats are created!"
+
+
+txt:
+ $(COMMAND)$@ $(SOURCE)
+
+html:
+ $(COMMAND)$@ $(SOURCE)
+
+tex:
+ $(COMMAND)latex -o $@ $(SOURCE)
+
+dvi:
+ $(COMMAND)latex -o $@ $(SOURCE)
+
+ps:
+ $(COMMAND)latex -o $@ $(SOURCE)
+
+pdf:
+ $(COMMAND)latex -o $@ $(SOURCE)
+
+info:
+ $(COMMAND)$@ $(SOURCE)
+
+lyx:
+ $(COMMAND)$@ $(SOURCE)
+
+rtf:
+ $(COMMAND)$@ $(SOURCE)
+
+clean:
+ rm -f *.txt *.html *.tex *.dvi *.ps *.pdf *.info *.lyx *.rtf
+