mirror of
https://github.com/daylinmorgan/task.mk.git
synced 2024-11-14 21:17:53 -06:00
11 lines
263 B
Makefile
11 lines
263 B
Makefile
.PHONY: check
|
|
check: ## get user confirmation or exit
|
|
$(call tconfirm,Would you like to proceed?)
|
|
@echo "you said yes!"
|
|
|
|
define USAGE
|
|
{a.$(HEADER_STYLE)}usage:{a.end}\n make <recipe>\n\n interactivity w/ task.mk\n
|
|
endef
|
|
|
|
.DEFAULT_GOAL = help
|
|
include .task.mk
|