# Ensure emacs always runs from this makefile's PWD EMACS_FLAGS=--eval '(setq user-emacs-directory default-directory)' -l core/core.el EMACS=emacs --batch $(EMACS_FLAGS) EMACSI=emacs -q $(EMACS_FLAGS) MODULES=$(patsubst modules/%, %, $(shell find modules/ -maxdepth 2 -type d)) all: autoloads autoremove install ## Package management 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 ## Byte compilation # compile # compile:core # compile:module # compile:module/submodule compile: init.el clean @$(EMACS) -f doom/compile compile\:core: init.el clean @$(EMACS) -f doom/compile -- init.el core $(patsubst %, compile\:%, $(MODULES)): init.el .local/autoloads.el @rm -fv $(shell find $(patsubst compile:%, modules/%, $@) -type f -name '*.elc') @$(EMACS) -f doom/compile -- $(patsubst compile:%, modules/%, $@) recompile: init.el @$(EMACS) -f doom/recompile clean: @$(EMACS) -f doom/clean-compiled-files clean-pcache: @$(EMACS) -l persistent-soft --eval '(delete-directory pcache-directory t)' reset: @$(EMACS) -f doom/reset test: init.el .local/autoloads.el @$(EMACS) -f doom-run-tests test\:core $(patsubst %, test\:%, $(MODULES)): init.el .local/autoloads.el @$(EMACS) -f doom-run-tests -- $(subst test:, , $@) # run tests interactively testi: init.el .local/autoloads.el @$(EMACSI) -f doom-run-tests -f ert # For running Emacs from a different folder than ~/.emacs.d run: @$(EMACSI) -l init.el doctor: @./bin/doom-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 %.elc: %.el @$(EMACS) -f doom/compile -- $< .PHONY: all test $(MODULES)