Skip to content

Instantly share code, notes, and snippets.

@wizcas
wizcas / Makefile
Created September 4, 2019 08:44 — forked from klmr/Makefile
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: