Skip to content

Instantly share code, notes, and snippets.

@Sigmanificient
Created April 27, 2022 18:15
Show Gist options
  • Save Sigmanificient/7a9714192578c5aceb170924430a325f to your computer and use it in GitHub Desktop.
Save Sigmanificient/7a9714192578c5aceb170924430a325f to your computer and use it in GitHub Desktop.
lolcat echo support check for prettier Makefile
# - lolcat suffix check -
COLOR := $(shell command -v lolcat)
ifeq (, $(COLOR))
COLOR=
else
COLOR= |lolcat
endif
# ----------------------
demo:
@ echo 'This is a demo' $(COLOR)
# if you dont have `lolcat` it will appear white!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment