diff options
author | Karl Berry <karl@freefriends.org> | 2011-11-27 23:14:43 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-11-27 23:14:43 +0000 |
commit | 00d99a084051a3b20f287051bb48af7ffa62a409 (patch) | |
tree | f434d29f05b7804a104c20ae4cfb52feaba0f45d /Master/texmf-dist/source/latex/philosophersimprint | |
parent | 8255a373ae03cbe4e01a189f867937ab90cde662 (diff) |
philosophersimprint (26nov11)
git-svn-id: svn://tug.org/texlive/trunk@24674 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/philosophersimprint')
-rw-r--r-- | Master/texmf-dist/source/latex/philosophersimprint/Makefile | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/Master/texmf-dist/source/latex/philosophersimprint/Makefile b/Master/texmf-dist/source/latex/philosophersimprint/Makefile deleted file mode 100644 index aa9d74ec3a1..00000000000 --- a/Master/texmf-dist/source/latex/philosophersimprint/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# -# Makefile for philosophersimprint package -# -# This file is in public domain -# -# $Id: Makefile,v 1.8 2007-05-16 15:15:32 boris Exp $ -# - -PACKAGE=philosophersimprint - -SAMPLES = sample.tex - -PDF = $(PACKAGE).pdf ${SAMPLES:%.tex=%.pdf} - -all: ${PDF} - - -%.pdf: %.dtx $(PACKAGE).cls - pdflatex $< - - bibtex $* - pdflatex $< - - makeindex -s gind.ist -o $*.ind $*.idx - - makeindex -s gglo.ist -o $*.gls $*.glo - pdflatex $< - while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log) \ - do pdflatex $<; done - - -%.cls: %.ins %.dtx - pdflatex $< - -%.pdf: %.tex $(PACKAGE).cls - pdflatex $< - - bibtex $* - pdflatex $< - while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log) \ - do pdflatex $<; done - - - -.PRECIOUS: $(PACKAGE).cfg $(PACKAGE).cls - - -clean: - $(RM) $(PACKAGE).cls *.log *.aux \ - *.cfg *.glo *.idx *.toc \ - *.ilg *.ind *.out *.lof \ - *.lot *.bbl *.blg *.gls \ - *.dvi *.ps - -distclean: clean - $(RM) $(PDF) - -# -# Archive for the distribution. Includes typeset documentation -# -archive: all clean - tar -czvf $(PACKAGE).tgz --exclude '*~' --exclude '*.tgz' --exclude CVS . |