diff options
author | Karl Berry <karl@freefriends.org> | 2016-05-10 21:28:54 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-05-10 21:28:54 +0000 |
commit | 9edaf8cb54cb95b68a38e1242c116c0ca0985195 (patch) | |
tree | 2a09230764d798a860a2ac1fec37d0d67b471eb0 /Master/texmf-dist/doc/latex/acmart/Makefile | |
parent | 55d9827b710e8c945cd35bd1efec973bf7d53698 (diff) |
acmart (10may16)
git-svn-id: svn://tug.org/texlive/trunk@41010 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/acmart/Makefile')
-rw-r--r-- | Master/texmf-dist/doc/latex/acmart/Makefile | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/acmart/Makefile b/Master/texmf-dist/doc/latex/acmart/Makefile new file mode 100644 index 00000000000..a73c07e30e6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/acmart/Makefile @@ -0,0 +1,80 @@ +# +# Makefile for acmart package +# +# This file is in public domain +# +# $Id: Makefile,v 1.10 2016/04/14 21:55:57 boris Exp $ +# + +PACKAGE=acmart + +SAMPLES = \ + sample-manuscript.tex \ + sample-acmsmall.tex \ + sample-acmlarge.tex \ + sample-acmtog.tex \ + sample-sigconf.tex \ + sample-siggraph.tex \ + sample-sigplan.tex \ + sample-sigchi.tex \ + sample-sigchi-a.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 + +sample-manuscript.pdf \ +sample-acmsmall.pdf \ +sample-acmlarge.pdf \ +sample-acmtog.pdf: samplebody-journals.tex + +sample-sigconf.pdf \ +sample-siggraph.pdf \ +sample-sigplan.pdf \ +sample-sigchi.pdf: samplebody-conf.tex + + +.PRECIOUS: $(PACKAGE).cfg $(PACKAGE).cls + + +clean: + $(RM) $(PACKAGE).cls *.log *.aux \ + *.cfg *.glo *.idx *.toc \ + *.ilg *.ind *.out *.lof \ + *.lot *.bbl *.blg *.gls *.cut *.hd \ + *.dvi *.ps *.thm *.tgz *.zip *.rpi + +distclean: clean + $(RM) $(PDF) *-converted-to.pdf + +# +# Archive for the distribution. Includes typeset documentation +# +archive: all clean + tar -C .. -czvf $(PACKAGE).tgz --exclude '*~' --exclude '*.tgz' --exclude '*.zip' --exclude CVS --exclude '.git*' $(PACKAGE) + +zip: all clean + zip -r $(PACKAGE).zip * -x '*~' -x '*.tgz' -x '*.zip' -x CVS -x 'CVS/*'
\ No newline at end of file |