diff options
author | Karl Berry <karl@freefriends.org> | 2009-05-19 18:49:47 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-05-19 18:49:47 +0000 |
commit | 0c741ff587856dbb399d9821ef008882310b6946 (patch) | |
tree | 30be1e5ffea84fe083b8ee1f5cb1801f5bd85825 /Master/texmf-dist/doc/latex/lshort-italian/Makefile | |
parent | 52f553f21f74a82c774000be836bf856c5632a8e (diff) |
move italian docs out of texmf-doc
git-svn-id: svn://tug.org/texlive/trunk@13261 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/lshort-italian/Makefile')
-rw-r--r-- | Master/texmf-dist/doc/latex/lshort-italian/Makefile | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/lshort-italian/Makefile b/Master/texmf-dist/doc/latex/lshort-italian/Makefile new file mode 100644 index 00000000000..bf9d1980d1e --- /dev/null +++ b/Master/texmf-dist/doc/latex/lshort-italian/Makefile @@ -0,0 +1,58 @@ +# pstops "4:0L@0.8(22.5cm,-0.6cm)+1L@0.8(22.5cm,13.3cm),2L@0.8(22.5cm,-0.6cm)+3L@0.8(22.5cm,13.3cm)" \ +# +# Questo file serve per creare la distribuzione di itlshort. +# Viene copiato col nome di Makefile all'interno della directory +# itlshort dal Makefile di installazione +# +# $Id: Makefile,v 1.5 2001/02/04 15:52:54 guild Exp $ +# +SHELL = /bin/sh +VERS = 3.16 + +OTHER = README CHANGES +FILES = src/biblio.tex src/kees.fig src/math.tex src/things.tex src/contrib.tex src/lshort.sty src/mylayout.sty src/title.tex \ + src/custom.tex src/itlshort.tex src/overview.tex src/typeset.tex src/fancyheadings.sty src/lssym.tex src/spec.tex \ + src/ndt.tex + +all: itlshort.dvi itlshort.ps itlshort-book.ps itlshort.pdf + + +itlshort.dvi: $(FILES) + @mkdir texbuild + (TEXINPUTS=`pwd`/src:$(TEXINPUTS);export TEXINPUTS; cd texbuild;\ + latex itlshort; latex itlshort; makeindex itlshort;\ + latex itlshort; latex itlshort; latex itlshort; mv itlshort.dvi ..) + +itlshort.ps: itlshort.dvi + dvips -Pcmz -oitlshort.ps itlshort.dvi + rm texbuild/* + +itlshort-book.ps: itlshort.ps + psbook itlshort.ps out.ps + pstops "4:0L@0.8(22.76cm,-0.6cm)+1L@0.8(22.76cm,13.45cm),3R@0.8(-1.38cm,16.25cm)+2R@0.8(-1.38cm,30.3cm)" \ + out.ps itlshort-book.ps + rm out.ps + + +itlshort.pdf: $(FILES) + @mkdir pdfbuild + (TEXINPUTS=`pwd`/src:$(TEXINPUTS);export TEXINPUTS; cd pdfbuild;\ + pdflatex itlshort; pdflatex itlshort;\ + makeindex itlshort;pdflatex itlshort; pdflatex itlshort;thumbpdf itlshort.pdf; pdflatex itlshort;pdflatex itlshort;mv itlshort.pdf ..) + rm pdfbuild/* + +src/title.tex: Makefile + perl fixdate.pl $(VERS) < src/title.tex > src/title.tex2 && mv src/title.tex2 src/title.tex + +dist: + ln -s . itlshort-$(VERS) + # gtar -zcvf lshort-$(VERS).src.tar.gz `awk -e '{print "lshort-$(VERS)/"$$1}' MANIFEST` + tar -zcvf itlshort-$(VERS).src.tar.gz `awk '{print "itlshort-$(VERS)/"$$1}' MANIFEST` + rm itlshort-$(VERS) + #cp itlshort-$(VERS).src.tar.gz CHANGES README itlshort-book.ps itlshort.dvi itlshort.pdf itlshort.ps $(HOME)/public_html/itlshort/ + + + +clean: + rm -rf texbuild pdfbuild + |