I've make file with target that needs some variable (token) as pre-requisite
e.g.
token =
deploy:
http://api.run.cf.com $(token)
I need that the user enter the token (to the file) before he run the make deploy
If not provide some error, how can I do it ?
I've tried to add
ifndef token
@echo Warning: token isn\'t defined\; abort
However not sure how to integrate it to the ` deploy target.