From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ACC3D1396D0 for ; Sat, 26 Aug 2017 20:05:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1519E1FC006; Sat, 26 Aug 2017 20:05:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E65F51FC006 for ; Sat, 26 Aug 2017 20:05:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 197B5341810 for ; Sat, 26 Aug 2017 20:05:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B16BA839D for ; Sat, 26 Aug 2017 20:05:40 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1503777906.ce5724914c352662a38d70166e46aeba78dbbd13.ulm@gentoo> Subject: [gentoo-commits] proj/pms:master commit in: / X-VCS-Repository: proj/pms X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: ce5724914c352662a38d70166e46aeba78dbbd13 X-VCS-Branch: master Date: Sat, 26 Aug 2017 20:05:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c329f04a-a0ff-4531-a11d-f23e91613a9f X-Archives-Hash: ada9e70ae3b53f804c8674123c27c094 commit: ce5724914c352662a38d70166e46aeba78dbbd13 Author: Ulrich Müller gentoo org> AuthorDate: Sat Aug 26 20:05:06 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Aug 26 20:05:06 2017 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=ce572491 Makefile: Join eapi-cheatsheet.pdf with pms.pdf target. Makefile | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index ef9991b..d10a65a 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ all: pms.pdf html: pms.html -pms.pdf: $(LATEXFILES) pms.bbl vc.tex +pms.pdf eapi-cheatsheet.pdf: $(LATEXFILES) pms.bbl vc.tex $(aux-clean) set -e; \ while true; do \ @@ -23,6 +23,15 @@ pms.pdf: $(LATEXFILES) pms.bbl vc.tex grep -q 'Warning.*Rerun' eapi-cheatsheet.log pms.log || break; \ done +eapi-cheatsheet-nocombine.pdf: pms.pdf + @# cheat sheet with separate pages, for proofreading + set -e; \ + while true; do \ + pdflatex -jobname eapi-cheatsheet-nocombine \ + '\PassOptionsToClass{nocombine}{leaflet}\input{eapi-cheatsheet}'; \ + grep -q 'Warning.*Rerun' eapi-cheatsheet-nocombine.log || break; \ + done + pms.dvi: $(LATEXFILES) pms.bbl vc.tex $(aux-clean) set -e; \ @@ -57,18 +66,6 @@ pms.bbl: pms.bib $(LATEXFILES) vc.tex vc.tex: $(SOURCES) /bin/sh ./vc -m -eapi-cheatsheet.pdf: pms.pdf - @# nothing to do here, since this is also part of the main document - -eapi-cheatsheet-nocombine.pdf: pms.pdf - @# cheat sheet with separate pages, for proofreading - set -e; \ - while true; do \ - pdflatex -jobname eapi-cheatsheet-nocombine \ - '\PassOptionsToClass{nocombine}{leaflet}\input{eapi-cheatsheet}'; \ - grep -q 'Warning.*Rerun' eapi-cheatsheet-nocombine.log || break; \ - done - dist: $(SOURCES) vc.tex pms.pdf pms.html PV='$(PV)'; \ if test -z "$${PV}"; then \