Personal Second Brain


Most recent

  • Harness Engineering

    Apr 26, 2026

  • TDFlow: Agentic Workflows for Test Driven Software Engineering

    Apr 17, 2026

  • Ask, and it shall be given: On the Turing completeness of prompting

    Apr 01, 2026

See 344 more →

Home

/

notes

Makefile

Apr 23, 20231 min read

  • lenguages

Colors

  • Color Coding Makefile Output
  • Bash Colors
  • A Makefile for managing an OpenSSL CA
  • Makefile tutorial
  • What is the difference between the GNU Makefile variable assignments =, ?=, := and +=?
NO_COLOR=\e[0m
OK_COLOR=\e[32m
ERROR_COLOR=\e[31m
WARN_COLOR=\e[33m
 
OK_STRING=$(OK_COLOR)[OK]$(NO_COLOR)
ERROR_STRING=$(ERROR_COLOR)[ERRORS]$(NO_COLOR)
WARN_STRING=$(WARN_COLOR)[WARNINGS]$(NO_COLOR)
 
ac:
	@echo -e "$(OK_STRING)"

Graph View

Created with Quartz v4.5.0 © 2026

  • GitHub