From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 22E8D138BEF for ; Thu, 15 Oct 2015 06:23:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63DEDE07FD; Thu, 15 Oct 2015 06:23:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8BE321C00B for ; Thu, 15 Oct 2015 06:23:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01CAE340B10 for ; Thu, 15 Oct 2015 06:23:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 681AF10AA for ; Thu, 15 Oct 2015 06:23: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: <1442182992.6ac6b477f4734e10f0f2a7220bd8f50961b130b7.ulm@gentoo> Subject: [gentoo-commits] proj/pms:eapi-6 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: 6ac6b477f4734e10f0f2a7220bd8f50961b130b7 X-VCS-Branch: eapi-6 Date: Thu, 15 Oct 2015 06:23: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: 8f8e06ff-95ae-4139-83a3-cdb19bc1a242 X-Archives-Hash: 3176c97e66558f0c549addb22a604303 commit: 6ac6b477f4734e10f0f2a7220bd8f50961b130b7 Author: Ulrich Müller gentoo org> AuthorDate: Sun Sep 13 22:23:12 2015 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Sep 13 22:23:12 2015 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=6ac6b477 Makefile: Fix circular dependency. Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index c50a0ea..a20f5ec 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,8 @@ clean : maintainer-clean: clean rm -f vc.tex -LATEXFILES = $(shell find -name '*.tex') pms.cls -LISTINGFILES = $(shell ls *.listing) +LATEXFILES := $(filter-out vc.tex,$(wildcard *.tex)) pms.cls +LISTINGFILES := $(wildcard *.listing) SOURCEFILES = $(LATEXFILES) $(LISTINGFILES) pms.pdf: $(SOURCEFILES) pms.bbl vc.tex eapi-cheatsheet.pdf @@ -20,7 +20,7 @@ pms.pdf: $(SOURCEFILES) pms.bbl vc.tex eapi-cheatsheet.pdf pdflatex eapi-cheatsheet pdflatex pms -pms.html: $(SOURCEFILES) pms.bbl +pms.html: $(SOURCEFILES) pms.bbl vc.tex @# need to do it twice to make the big env var table work mk4ht xhlatex pms xhtml,fn-in mk4ht xhlatex pms xhtml,fn-in @@ -57,7 +57,7 @@ eapi-cheatsheet-nocombine.pdf: vc.tex vc.tex: $(SOURCEFILES) vc-git.awk /bin/sh ./vc -pms.dvi: $(SOURCEFILES) pms.bbl +pms.dvi: $(SOURCEFILES) pms.bbl vc.tex latex pms latex pms latex pms From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 90E71139BC7 for ; Mon, 14 Sep 2015 20:29:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F96821C074; Mon, 14 Sep 2015 20:29:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D61AF21C074 for ; Mon, 14 Sep 2015 20:29:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7FC4234089A for ; Mon, 14 Sep 2015 20:29:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A1BF1F3 for ; Mon, 14 Sep 2015 20:29:31 +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: <1442182992.6ac6b477f4734e10f0f2a7220bd8f50961b130b7.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: 6ac6b477f4734e10f0f2a7220bd8f50961b130b7 X-VCS-Branch: master Date: Mon, 14 Sep 2015 20:29:31 +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: 5a4113ce-bac3-442f-ac41-fd76b3d018b6 X-Archives-Hash: 809336b94c8d007b53cf62b634659576 Message-ID: <20150914202931.JLVX5Z0mxp4JPUhOFlFFLa6cxIJ7HZrgE6WcUWN6-Zg@z> commit: 6ac6b477f4734e10f0f2a7220bd8f50961b130b7 Author: Ulrich Müller gentoo org> AuthorDate: Sun Sep 13 22:23:12 2015 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Sep 13 22:23:12 2015 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=6ac6b477 Makefile: Fix circular dependency. Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index c50a0ea..a20f5ec 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,8 @@ clean : maintainer-clean: clean rm -f vc.tex -LATEXFILES = $(shell find -name '*.tex') pms.cls -LISTINGFILES = $(shell ls *.listing) +LATEXFILES := $(filter-out vc.tex,$(wildcard *.tex)) pms.cls +LISTINGFILES := $(wildcard *.listing) SOURCEFILES = $(LATEXFILES) $(LISTINGFILES) pms.pdf: $(SOURCEFILES) pms.bbl vc.tex eapi-cheatsheet.pdf @@ -20,7 +20,7 @@ pms.pdf: $(SOURCEFILES) pms.bbl vc.tex eapi-cheatsheet.pdf pdflatex eapi-cheatsheet pdflatex pms -pms.html: $(SOURCEFILES) pms.bbl +pms.html: $(SOURCEFILES) pms.bbl vc.tex @# need to do it twice to make the big env var table work mk4ht xhlatex pms xhtml,fn-in mk4ht xhlatex pms xhtml,fn-in @@ -57,7 +57,7 @@ eapi-cheatsheet-nocombine.pdf: vc.tex vc.tex: $(SOURCEFILES) vc-git.awk /bin/sh ./vc -pms.dvi: $(SOURCEFILES) pms.bbl +pms.dvi: $(SOURCEFILES) pms.bbl vc.tex latex pms latex pms latex pms