aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-07 21:19:59 -0700
committerGravatar Tom Willemse2026-07-07 21:19:59 -0700
commit888d325f9eca9cf88507e39902210b2366c00641 (patch)
tree88ddacabbd5df749ec8b75ad53d82e2cde4822e1 /GNUmakefile
parentb2fba5b9a8aaf7fd3316b33913633d2c7f199d81 (diff)
downloadnew-dotfiles-888d325f9eca9cf88507e39902210b2366c00641.tar.gz
new-dotfiles-888d325f9eca9cf88507e39902210b2366c00641.zip
GNUmakefile: Update transformation colors
Use backkgrounds instead of foregrounds, add some spacing around them. Trying out something new.
Diffstat (limited to 'GNUmakefile')
-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