1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-09 08:29:42 +00:00
mpv/DOCS/Polish/Makefile
eyck 232477eaad html in single file.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1666 b3059339-0415-0410-9bf9-f77b7e298cf2
2001-08-23 16:14:40 +00:00

47 lines
690 B
Makefile

#! /bin/make -f
#
# Makefile to convert the example.sgml
# old multiple commands way
# COMMAND=sgml2
# new single command approach
COMMAND=linuxdoc --charset=latin --language=pl --split=0 --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