From 21ecf48cca186b95f8f1c6cf0436fe2b39b46d42 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 17 Apr 2017 23:34:08 -0400 Subject: [PATCH] Simplify makefile --- Makefile | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 361f16125..eada3cbdb 100644 --- a/Makefile +++ b/Makefile @@ -48,18 +48,10 @@ ifeq (bootstrap,$(firstword $(MAKECMDGOALS))) $(eval $(ARGV):;@:) endif -bootstrap: init.el - @$(EMACS) -f 'doom-initialize-autoloads' --eval "(doom/bootstrap '($(ARGV)))" +bootstrap: init.el .local/autoloads.el + @$(EMACS) --eval "(doom/bootstrap '($(ARGV)))" -# This is only useful if your emacs.d is somewhere other than ~/.emacs.d (for -# development purposes for instance). -run: - @emacs $(EMACS_FLAGS) -q -l init.el - -reload: - @$(EMACS) -f 'doom/reload' - init.el: @[ -e init.el ] || $(error No init.el file; create one or copy init.example.el)