2022-03-06
I rely on Makefiles during larger projects to keep track of various commands and queries that aid in development.
define TODO
- Item 1
- Item 2
endef
export TODO
todo:
echo "$$TODO"
When this recipe is run, the todo list is output.
make todo
# - Item 1
# - Item 2