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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 545D515A7D9 for ; Tue, 14 Mar 2023 20:41:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C3BDE08EF; Tue, 14 Mar 2023 20:41:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72C1CE08EF for ; Tue, 14 Mar 2023 20:41:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82848340AB3 for ; Tue, 14 Mar 2023 20:41:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 32A008D6 for ; Tue, 14 Mar 2023 20:41:10 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1678826112.228b2c051a9db004ca03dffc36500893502c94ee.xgqt@gentoo> Subject: [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: / X-VCS-Repository: proj/emacs-ebuild-snippets X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 228b2c051a9db004ca03dffc36500893502c94ee X-VCS-Branch: master Date: Tue, 14 Mar 2023 20:41:10 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 36aed03f-39c4-43ae-ab18-c3e487350d8e X-Archives-Hash: 7e4014839e3be5bd47fc4efb2fae4e32 commit: 228b2c051a9db004ca03dffc36500893502c94ee Author: Maciej Barć gentoo org> AuthorDate: Tue Mar 14 20:35:12 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Tue Mar 14 20:35:12 2023 +0000 URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=228b2c05 Makefile: add eldev-install Signed-off-by: Maciej Barć gentoo.org> Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index e2b7514..9d46c46 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ ELCS = $(ELS:.el=.elc) EMACS := emacs RM := rm -f +SH := sh EMACFLAGS := --batch -q --no-site-file -L $(PWD) EMACSCMD = $(EMACS) $(EMACFLAGS) @@ -27,3 +28,9 @@ compile-snippets: .PHONY: compile compile: $(ELCS) compile: compile-snippets + +.PHONY: eldev-install +eldev-install: + $(MAKE) -B clean + $(MAKE) -B $(ELCS) + $(SH) $(PWD)/scripts/eldev-install.sh