From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1328834-garchives=archives.gentoo.org@lists.gentoo.org> 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 47F42158086 for <garchives@archives.gentoo.org>; Sun, 10 Oct 2021 10:34:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8292AE087F; Sun, 10 Oct 2021 10:34:41 +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-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F2AFE087F for <gentoo-commits@lists.gentoo.org>; Sun, 10 Oct 2021 10:34:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 55C2D343072 for <gentoo-commits@lists.gentoo.org>; Sun, 10 Oct 2021 10:34:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B04F510A for <gentoo-commits@lists.gentoo.org>; Sun, 10 Oct 2021 10:34:38 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> 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" <ulm@gentoo.org> Message-ID: <1633862039.867c1219f744ac96c18ba44105008fce2dd60d70.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: / X-VCS-Repository: proj/devmanual X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 867c1219f744ac96c18ba44105008fce2dd60d70 X-VCS-Branch: master Date: Sun, 10 Oct 2021 10:34:38 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 53c71232-c868-46c2-a392-f3f05903f325 X-Archives-Hash: 857cebde8a9cd625effa329d64fc969b commit: 867c1219f744ac96c18ba44105008fce2dd60d70 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sun Oct 10 10:31:02 2021 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Oct 10 10:33:59 2021 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=867c1219 Makefile: Add "check" target Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0a40cc3..cf57852 100644 --- a/Makefile +++ b/Makefile @@ -99,6 +99,8 @@ tidy: $(HTMLS) $(ECLASS_HTMLS) test $${status} -eq 0 && echo "tidy validation successful"; \ exit $${status} +check: validate tidy + dist: COMMITDATE=$$(TZ=UTC git log -1 --pretty="format:%cd" \ --date="format-local:%Y%m%d"); \ @@ -109,6 +111,6 @@ dist: clean: @rm -f $(HTMLS) $(IMAGES) documents.js .depend -.PHONY: all prereq build install validate tidy dist clean +.PHONY: all prereq build install check validate tidy dist clean -include .depend