Add clean target

This commit is contained in:
Yorick Barbanneau 2022-12-04 23:20:08 +01:00
parent 462e4a7e55
commit cf8cb5add5

View file

@ -43,6 +43,10 @@ run: deps
$(ansible_options) $(ansible_playbook) \
-u $(ansible_user)
.PHONY: clean
clean: clean-venv
[ -d $(ansible_roles) ] && rm -rf $(ansible_roles)
# venv management
$(venv_source):
$(python_bin) -m venv $(venv_source)