Skip to content

Instantly share code, notes, and snippets.

@klmr
klmr / Makefile
Last active July 8, 2024 13:15
Self-documenting makefiles
# Example makefile with some dummy rules
.PHONY: all
## Make ALL the things; this includes: building the target, testing it, and
## deploying to server.
all: test deploy
.PHONY: build
# No documentation; target will be omitted from help display
build: