summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/acmart/Makefile
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/acmart/Makefile
Initial commit
Diffstat (limited to 'macros/latex/contrib/acmart/Makefile')
-rw-r--r--macros/latex/contrib/acmart/Makefile102
1 files changed, 102 insertions, 0 deletions
diff --git a/macros/latex/contrib/acmart/Makefile b/macros/latex/contrib/acmart/Makefile
new file mode 100644
index 0000000000..03cf1c0aeb
--- /dev/null
+++ b/macros/latex/contrib/acmart/Makefile
@@ -0,0 +1,102 @@
+#
+# 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
+
+
+PDF = $(PACKAGE).pdf acmguide.pdf
+
+all: ${PDF} ALLSAMPLES
+
+
+%.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
+
+
+acmguide.pdf: $(PACKAGE).dtx $(PACKAGE).cls
+ pdflatex -jobname acmguide $(PACKAGE).dtx
+ - bibtex acmguide
+ pdflatex -jobname acmguide $(PACKAGE).dtx
+ while ( grep -q '^LaTeX Warning: Label(s) may have changed' acmguide.log) \
+ do pdflatex -jobname acmguide $(PACKAGE).dtx; done
+
+%.cls: %.ins %.dtx
+ pdflatex $<
+
+
+ALLSAMPLES:
+ cd samples; pdflatex samples.ins; cd ..
+ for texfile in samples/*.tex; do \
+ pdffile=$${texfile/.tex/.pdf}; \
+ ${MAKE} $$pdffile; \
+ done
+
+samples/%: %
+ cp $^ samples
+
+
+samples/$(PACKAGE).cls: $(PACKAGE).cls
+samples/ACM-Reference-Format.bst: ACM-Reference-Format.bst
+
+samples/%.pdf: samples/%.tex samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst
+ cd $(dir $@) && pdflatex $(notdir $<)
+ - cd $(dir $@) && bibtex $(notdir $(basename $<))
+ cd $(dir $@) && pdflatex $(notdir $<)
+ cd $(dir $@) && pdflatex $(notdir $<)
+ while ( grep -q '^LaTeX Warning: Label(s) may have changed' $(basename $<).log) \
+ do cd $(dir $@) && pdflatex $(notdir $<); done
+
+samples/sample-xelatex.pdf: samples/sample-xelatex.tex samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst
+ cd $(dir $@) && xelatex $(notdir $<)
+ - cd $(dir $@) && bibtex $(notdir $(basename $<))
+ cd $(dir $@) && xelatex $(notdir $<)
+ cd $(dir $@) && xelatex $(notdir $<)
+ while ( grep -q '^LaTeX Warning: Label(s) may have changed' $(basename $<).log) \
+ do cd $(dir $@) && xelatex $(notdir $<); done
+
+
+
+.PRECIOUS: $(PACKAGE).cfg $(PACKAGE).cls
+
+docclean:
+ $(RM) *.log *.aux \
+ *.cfg *.glo *.idx *.toc \
+ *.ilg *.ind *.out *.lof \
+ *.lot *.bbl *.blg *.gls *.cut *.hd \
+ *.dvi *.ps *.thm *.tgz *.zip *.rpi \
+ samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst \
+ samples/*.log samples/*.aux samples/*.out \
+ samples/*.bbl samples/*.blg samples/*.cut
+
+
+
+clean: docclean
+ $(RM) $(PACKAGE).cls \
+ samples/*.tex
+
+distclean: clean
+ $(RM) *.pdf samples/sample-*.pdf
+
+#
+# Archive for the distribution. Includes typeset documentation
+#
+archive: all clean
+ COPYFILE_DISABLE=1 tar -C .. -czvf ../$(PACKAGE).tgz --exclude '*~' --exclude '*.tgz' --exclude '*.zip' --exclude CVS --exclude '.git*' $(PACKAGE); mv ../$(PACKAGE).tgz .
+
+zip: all clean
+ zip -r $(PACKAGE).zip * -x '*~' -x '*.tgz' -x '*.zip' -x CVS -x 'CVS/*'
+
+documents.zip: all docclean
+ zip -r $@ acmart.pdf acmguide.pdf samples *.cls ACM-Reference-Format.*