doomemacs/Makefile

13 lines
327 B
Makefile
Raw Normal View History

2014-12-06 06:28:03 +08:00
EMACS=emacs
all: clean compile
clean:
@rm -rf init.elc init/*.elc elisp/*.elc
@rm -rf auto-save-list recentf places ido.last async-bytecomp.log
compile:
${EMACS} -Q --batch -L . -f batch-byte-compile init.el init/*.el elisp/*.el
@rm -rf init/autoload.*
${EMACS} -Q --batch -L . -f update-directory-autoloads init elisp