doomemacs/Makefile

22 lines
545 B
Makefile
Raw Normal View History

2015-06-12 23:22:33 +08:00
EMACS=emacs
2014-12-06 06:28:03 +08:00
2015-06-20 05:57:59 +08:00
all: update
2015-01-24 12:57:42 +08:00
2015-06-21 04:34:02 +08:00
update: autoloads
2015-06-21 04:54:39 +08:00
@git pull
2015-06-06 18:40:33 +08:00
@cask install
@cask update
2015-06-26 05:50:18 +08:00
@emacs -Q --batch -f batch-byte-compile init-load-path.el
2014-12-06 06:28:03 +08:00
2015-06-12 23:22:33 +08:00
clean: clean-extras
2015-06-20 05:57:59 +08:00
@rm -f *.elc {core,modules,private,contrib}/*.elc {core,modules}/lib/*.elc
2015-06-12 23:22:33 +08:00
clean-extras:
@rm -rf auto-save-list recentf places ido.last async-bytecomp.log elpa projectile-bookmarks.eld projectile.cache company-statistics-cache.el tramp smex-items semanticdb
autoloads:
2015-06-20 05:57:59 +08:00
@emacs --script scripts/generate-autoloads.el
compile: autoloads
@emacs --script scripts/byte-compile.el