From 1b5f7cd20489e242db24df97c49b12e17473c2bc Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 23 Nov 2015 19:40:55 -0500 Subject: [PATCH] Verbose makefile commands --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 4c9252402..b44b1c45f 100644 --- a/Makefile +++ b/Makefile @@ -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