Skip to content

Instantly share code, notes, and snippets.

View jeffsp's full-sized avatar

Jeff Perry jeffsp

  • University of Texas
View GitHub Profile
@jeffsp
jeffsp / Makefile
Last active January 15, 2022 00:41
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