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 35016158094 for ; Thu, 7 Jul 2022 23:28:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54ECDE0D04; Thu, 7 Jul 2022 23:28:03 +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 33320E0D04 for ; Thu, 7 Jul 2022 23:28:03 +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 1F09E340DBD for ; Thu, 7 Jul 2022 23:28:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90E614ED for ; Thu, 7 Jul 2022 23:28:00 +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: <1657236448.c19f12fb4e9ebc0cdd0b49ef6c23161db9a5a953.xgqt@gentoo> Subject: [gentoo-commits] proj/emacs-openrc:master commit in: / X-VCS-Repository: proj/emacs-openrc X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: c19f12fb4e9ebc0cdd0b49ef6c23161db9a5a953 X-VCS-Branch: master Date: Thu, 7 Jul 2022 23:28:00 +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: dd56813b-770f-4e76-a066-987bddca1c8b X-Archives-Hash: 062a6b7d1b6bc98c83a3021c5e9da82e commit: c19f12fb4e9ebc0cdd0b49ef6c23161db9a5a953 Author: Maciej Barć gentoo org> AuthorDate: Thu Jul 7 23:27:28 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Thu Jul 7 23:27:28 2022 +0000 URL: https://gitweb.gentoo.org/proj/emacs-openrc.git/commit/?id=c19f12fb Makefile: add install target for local installations Signed-off-by: Maciej Barć gentoo.org> Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 513142e..62da177 100644 --- a/Makefile +++ b/Makefile @@ -17,3 +17,8 @@ clean: .PHONY: compile compile: openrc.elc + +.PHONY: install +install: compile + $(EMACSCMD) \ + --eval "(require 'package)" --eval "(package-install-file \"$(PWD)\")"