aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 7389aac..da5f8a7 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -8,7 +8,7 @@ SCHEME_IMPLEMENTATION = guile
.PRECIOUS: %.el
define tangle =
- @printf "\e[35mOBT\e[0m %s\n" $<
+ @printf "\e[30;41m OBT \e[0m %s\n" $<
@$(EMACS) -quick -batch \
-eval "(package-initialize)" \
-load ob-tangle \
@@ -28,7 +28,8 @@ before-%-install: # Dummy recipe
@true
%-stow: % before-%-install
- $(STOW) $<
+ @printf "\e[30;44m LNK \e[0m %s\n" $<
+ @$(STOW) $<
%-install: %-stow # Dummy recipe
@true
@@ -131,14 +132,14 @@ nyxt: nyxt/.config/nyxt/init.lisp
$(call tangle,emacs-lisp)
%.elc: %.el
- @printf "\e[36mELC\e[0m %s\n" $<
+ @printf "\e[30;42m ELC \e[0m %s\n" $<
@$(EMACS) -q -batch -f package-initialize -f batch-byte-compile $<
%.fnl: %.org
$(call tangle,fennel)
%.lua: %.fnl
- @printf "\e[32mFNL\e[0m %s\n" $<
+ @printf "\e[30;43m FNL \e[0m %s\n" $<
@fennel --compile $^ > $@
%: %.org