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