doomemacs/Makefile
2017-06-05 17:36:22 +02:00

55 lines
1.3 KiB
Makefile

# Ensure emacs always runs from this makefile's PWD
EMACS_LIBS=-l core/core.el
EMACS=emacs --batch --eval '(setq user-emacs-directory default-directory)' $(EMACS_LIBS)
TEST_EMACS=$(EMACS) --eval '(setq noninteractive nil)' $(EMACS_LIBS)
TESTS=$(shell find test/ -type f -name 'test-*.el')
# Tasks
all: autoloads autoremove install update
install: init.el .local/autoloads.el
@$(EMACS) -f doom/packages-install
update: init.el .local/autoloads.el
@$(EMACS) -f doom/packages-update
autoremove: init.el .local/autoloads.el
@$(EMACS) -f doom/packages-autoremove
autoloads: init.el
@$(EMACS) -f doom/reload-autoloads
recompile: init.el
@$(EMACS) -f doom/recompile
compile: init.el clean
@$(EMACS) -f doom/compile
compile-lite: init.el clean
@$(EMACS) -f doom/compile-lite
clean:
@$(EMACS) -f doom/clean-compiled
clean-cache:
@$(EMACS) -f doom/clean-cache
test: init.el .local/autoloads.el
@$(TEST_EMACS) $(patsubst %,-l %, $(TESTS)) -f ert-run-tests-batch-and-exit
$(TESTS): init.el .local/autoloads.el
@$(TEST_EMACS) $(patsubst %,-l %, $@) -f ert-run-tests-batch-and-exit
doctor:
@./bin/doctor
#
init.el:
@[ -e init.el ] || $(error No init.el file; create one or copy init.example.el)
.local/autoloads.el:
@$(EMACS) -f doom-initialize-autoloads
.PHONY: all test $(TESTS)