9 lines
171 B
Makefile
9 lines
171 B
Makefile
##
|
|
# INSTALL
|
|
|
|
# target install-ansible; Install ansible on local host
|
|
.PHONY: install-ansible
|
|
install-ansible:
|
|
$(if $(shell type -p ansible),,$(RUN) $(INSTALL) ansible)
|
|
|