Verbose makefile commands

This commit is contained in:
Henrik Lissner 2015-11-23 19:40:55 -05:00
parent 6075e46a91
commit 1b5f7cd204

View file

@ -3,19 +3,19 @@ EMACS=emacs
all: update
update: autoloads
@git pull
@cask install
@cask update
@emacs -Q --batch -f batch-byte-compile init.el init-load-path.el core/core.el core/core-os-osx.el contrib/*.el
git pull
cask install
cask update
emacs -Q --batch -f batch-byte-compile init.el init-load-path.el core/core.el core/core-os-osx.el contrib/*.el
clean: clean-extras
@rm -f *.elc {core,modules,private,contrib}/*.elc {core,modules}/lib/*.elc
rm -f *.elc {core,modules,private,contrib}/*.elc {core,modules}/lib/*.elc
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
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:
@emacs --script scripts/generate-autoloads.el
emacs --script scripts/generate-autoloads.el
compile: autoloads
@emacs --script scripts/byte-compile.el
emacs --script scripts/byte-compile.el