summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index b25f751..fa9e1b2 100644
--- a/Makefile
+++ b/Makefile
@@ -112,6 +112,10 @@ $(BOOTTARGETS):
$(BUILD_DIR)/$(ANSIBLE_DIR)/run-playbook-only.json
@mv $(BUILD_DIR)/$(ANSIBLE_DIR)/boot_files $(BUILD_DIR)/build/boot
+# The builds are directories named after the template name
+clean:
+ -$(foreach build_dir,$(TEMPLATES),test -d $(build_dir) && rm -rf $(build_dir);)
+
help:
@printf "Usage:\n\tmake <template>/<flavor>[/boot]\n"
@echo
@@ -123,8 +127,3 @@ help:
@echo
@echo "Generate boot files targets:"
@printf "\t<{base,provisioning}_target>/boot\n"
-
-# The builds are directories named after the template name
-clean:
- -$(foreach build_dir,$(TEMPLATES),test -d $(build_dir) && rm -rf $(build_dir);)
-