From 316502744b522783eb185af65b26824b2c1a186b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 30 Jun 2022 06:38:05 +0200 Subject: [PATCH] Add default "all" target --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 862d47f..4ef32a5 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,10 @@ pip = pip ansible = venv/bin/ansible-playbook ansible_run = $(activate) && ansible-playbook -e ansible_python_interpreter=/usr/bin/python3 --inventory localhost, --diff ./playbook.yml ${ANSIBLE_EXTRA_ARGS} +.PHONY: all +all: | venv $(ansible) + $(ansible_run) + .PHONY: config config: | venv $(ansible) $(ansible_run) --skip-tags system-update