diff options
author | Karl Berry <karl@freefriends.org> | 2011-04-24 23:11:16 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-04-24 23:11:16 +0000 |
commit | 5dbccd79d3dc5048a71985b87f22e6b015c17de5 (patch) | |
tree | ba2d2c130d1d8bb3992241ab6f02db6c36de740d /Master/texmf-dist/source/latex/euro | |
parent | 44be666bc642b9aae3ffddbc08218de133a69e73 (diff) |
euro doc update
git-svn-id: svn://tug.org/texlive/trunk@22191 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/euro')
-rw-r--r-- | Master/texmf-dist/source/latex/euro/Makefile | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/Master/texmf-dist/source/latex/euro/Makefile b/Master/texmf-dist/source/latex/euro/Makefile deleted file mode 100644 index 1c09c38e583..00000000000 --- a/Master/texmf-dist/source/latex/euro/Makefile +++ /dev/null @@ -1,65 +0,0 @@ -# $Id: Makefile,v 1.6 2005/03/07 14:22:19 m Exp $ - -NAME=euro -ARCHIVE_NAME=$(NAME).tar.gz -ARCHIVE_CONTENTS=$(NAME).dtx Makefile $(NAME).txt $(NAME).ins $(NAME).pdf -MAKEIDXOPT= -DVIPSOPT= #-Pcmz -Pamz -DEP=$(NAME).sty - -all: $(NAME).ps - -print: $(NAME).ps - psbook $(NAME).ps|psnup -2|psselect -e|lpr - @ echo -n revert paper stack and hit return - @ read key - psbook $(NAME).ps|psnup -2|psselect -o -r|lpr - -ps: $(NAME).ps - -%.ps: %.dvi - dvips $(DVIPSOPT) $< -o $@ - -hyper: $(NAME).dtx $(NAME).sty - pdflatex "\relax\let\makehyperref\active\input $(NAME).dtx" - -pdf: $(NAME).pdf - -%.pdf: %.dtx - pdflatex $< - -arc: archive - -archive: $(NAME).ins $(NAME).pdf - @ tar -czf $(ARCHIVE_NAME) $(ARCHIVE_CONTENTS) - @ echo $(ARCHIVE_NAME): - @ echo ==================== - @ tar -tzf $(ARCHIVE_NAME) - -clean: - rm -f $(NAME).{log,toc,lot,lof,idx,ilg,ind,aux,blg,bbl,dvi,ins} - -distclean: clean - rm -f $(NAME).{ps,pdf,sty} $(ARCHIVE_NAME) - - -REFWARN = 'Rerun to get cross-references' -LATEXMAX = 5 - -%.dvi: %.dtx $(DEP) - latex $< - RUNS=$(LATEXMAX); \ - while [ $$RUNS -gt 0 ] ; do \ - if grep $(REFWARN) $*.log > /dev/null; \ - then latex $< ; else break; fi; \ - RUNS=`expr $$RUNS - 1`; \ - done - -$(NAME).sty: $(NAME).ins FORCE - tex $(NAME).ins - -$(NAME).ins: - latex $(NAME).dtx - -FORCE: - |