commit: 228b2c051a9db004ca03dffc36500893502c94ee Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Tue Mar 14 20:35:12 2023 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> 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ć <xgqt <AT> 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
