aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-09-18 00:04:54 +0200
committerGravatar Tom Willemse2016-09-18 00:04:54 +0200
commit99052b606c316b802551335298df13cc4a55b8fc (patch)
treea560d263576e51fe0ec4679e6fd37dcb60f2018f /emacs/.emacs.d
parentc5de9ef379e4cfa5d997502368244c95991b12fb (diff)
downloadnew-dotfiles-99052b606c316b802551335298df13cc4a55b8fc.tar.gz
new-dotfiles-99052b606c316b802551335298df13cc4a55b8fc.zip
Add color to the Makefile
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r--emacs/.emacs.d/GNUmakefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/emacs/.emacs.d/GNUmakefile b/emacs/.emacs.d/GNUmakefile
index 71187dc..29ea17e 100644
--- a/emacs/.emacs.d/GNUmakefile
+++ b/emacs/.emacs.d/GNUmakefile
@@ -10,13 +10,15 @@ all: init.elc $(AUTOLOADS_FILE) $(SITE_LISPS)
$(call tangle,emacs-lisp)
%.elc: %.el
- $(EMACS) -batch \
+ @echo -e "\e[31mELC\e[0m $<"
+ @$(EMACS) -batch \
-eval "(package-initialize)" \
-eval "(byte-compile-file \"$<\")"
### Site Lisp
$(AUTOLOADS_FILE): $(SITE_LISPS)
- $(EMACS) -batch \
+ @echo -e "\e[32mGEN\e[0m $@"
+ @$(EMACS) -batch \
-eval "(setq generated-autoload-file \"$(CURDIR)/$@\")" \
-eval "(update-directory-autoloads \"$(CURDIR)/site-lisp/\")"