From 627e617b1ba793fc8a9d316e7bcafe07631b7676 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 7 Jul 2026 21:19:59 -0700 Subject: GNUmakefile: Update transformation colors Use backkgrounds instead of foregrounds, add some spacing around them. Trying out something new. --- GNUmakefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'GNUmakefile') 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 -- cgit v1.3-2-g0d8e