From f6d44c9366bec10398a1c47a4304cd54e4e1a33c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 8 Apr 2016 01:44:10 -0400 Subject: [PATCH] Makefile: refactor install target --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e7e71942e..0b3f717c9 100644 --- a/Makefile +++ b/Makefile @@ -4,10 +4,8 @@ REPO_URL="https://github.com/hlissner" all: install autoloads bootstrap.elc -install: autoloads bootstrap.elc - @cask install 2>&1 - -# If you keep emacs open while running this, run narf/reload afterwards +# If you keep emacs open while running either of these, run narf/reload afterwards +install: autoloads _install bootstrap.elc update: autoloads _update bootstrap.elc autoloads: @@ -35,4 +33,7 @@ reset: _update: @cask update 2>&1 +_install: + @cask install 2>&1 + .PHONY: all