diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DOCS/Polish/Makefile	Thu Aug 23 13:31:58 2001 +0000
@@ -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
+