makefile: correct race condition on first install

This commit is contained in:
Henrik Lissner 2016-06-06 23:46:40 -04:00
parent 746dcbd4ac
commit e06eae0ba6

View file

@ -5,8 +5,8 @@ REPO_URL="https://github.com/hlissner"
all: install
# If you run either of these with emacs open, run doom-reload afterwards
install: autoloads _install core/core.elc init.elc
update: autoloads _update core/core.elc init.elc
install: _install core/core.elc init.elc autoloads
update: _update core/core.elc init.elc autoloads
autoloads:
@$(EMACS) --batch -l init.el --eval '(doom-reload-autoloads)' 2>&1