Skip to content

Instantly share code, notes, and snippets.

@eagafonov
eagafonov / Makefile
Created January 15, 2022 00:41 — forked from jeffsp/Makefile
Easy way to embed help in a GNU make Makefile
.PHONY: target1 # Target 1 help text
target1: target2 target3
@echo "Target 1"
.PHONY: target2 # Target 2 help text
target2:
@echo "Target 2"
.PHONY: target3