mirror of
https://github.com/daylinmorgan/task.mk.git
synced 2024-11-14 21:17:53 -06:00
15 lines
506 B
Makefile
15 lines
506 B
Makefile
define USAGE
|
|
{a.style('usage','header')}:\n make <recipe>\n
|
|
Turn your {a.style('`Makefile`','b_magenta')} into
|
|
the {a.italic}{a.underline}task runner{a.end} you always needed.
|
|
See the example output below.\n
|
|
endef
|
|
|
|
EPILOG = \nfor more info: gh.dayl.in/task.mk
|
|
PRINT_VARS := VERSION SHELL
|
|
PHONIFY = 1
|
|
|
|
-include .task.mk
|
|
.task.mk: $(TEMPLATES) generate.py
|
|
$(call msg,re-jinjaing the local {a.b_cyan}.task.mk{a.end})
|
|
@./generate.py $(VERSION) > .task.mk || (echo "generator failed!!" && rm .task.mk)
|