From af69feffd5d70a729a1abac22d7341a488bca7af Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Mon, 23 Nov 2009 18:08:37 +0000 Subject: new latex package combinedgraphics (~1nov09) git-svn-id: svn://tug.org/texlive/trunk@16144 c570f23f-e606-0410-a88d-b1316a301751 --- .../source/latex/combinedgraphics/Makefile | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 Master/texmf-dist/source/latex/combinedgraphics/Makefile (limited to 'Master/texmf-dist/source/latex/combinedgraphics/Makefile') diff --git a/Master/texmf-dist/source/latex/combinedgraphics/Makefile b/Master/texmf-dist/source/latex/combinedgraphics/Makefile new file mode 100644 index 00000000000..ae99f280867 --- /dev/null +++ b/Master/texmf-dist/source/latex/combinedgraphics/Makefile @@ -0,0 +1,65 @@ +# +# Makefile for combinedgraphics package +# +# Copyright 2009 Christian Schneider +# +# This file is part of combinedgraphics. +# +# combinedgraphics is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 3 as +# published by the Free Software Foundation, not any later version. +# +# combinedgraphics is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with combinedgraphics. If not, see . +# +# WARNING: THIS IS ALPHA SOFTWARE AND MAY CONTAIN SERIOUS BUGS! +# + +PACKAGE := combinedgraphics + +PDFLATEX := pdflatex +MAKEINDEX := makeindex + +.PHONY: all pkg doc test clean distclean force + +all: pkg doc test + +%.sty: %.ins %.dtx + $(RM) $@ + $(PDFLATEX) -interaction=nonstopmode $< + +%.idx %.glo: %.dtx %.sty + $(PDFLATEX) -interaction=nonstopmode $< + +%.ind: %.idx + $(MAKEINDEX) -s gind.ist -o $@ $< + +%.gls: %.glo + $(MAKEINDEX) -s gglo.ist -o $@ $< + +$(PACKAGE).pdf: %.pdf: %.dtx %.sty %.ind %.gls + $(PDFLATEX) -interaction=nonstopmode $< + $(PDFLATEX) -interaction=nonstopmode $< + $(PDFLATEX) -interaction=nonstopmode $< + +pkg: $(PACKAGE).sty + +test: $(PACKAGE).sty force + $(MAKE) -C test + +doc: $(PACKAGE).pdf + +clean: force + $(RM) *.aux *.glo *.gls *.idx *.ilg *.ind *.log *.toc *~ + $(MAKE) -C test clean + +distclean: clean force + $(RM) $(PACKAGE).sty $(PACKAGE).pdf $(TESTFILE).pdf + $(MAKE) -C test distclean + +force: ; -- cgit v1.2.3