1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-22 06:42:03 +00:00
mpv/DOCS/Polish/Makefile
eyck ae01bb3f31 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
2001-08-23 13:31:58 +00:00

47 lines
650 B
Makefile

#! /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