diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -45,6 +45,21 @@ TIMESTAMP := $(shell date "+%Y-%m-%d_%H-%M-%S") check_rootpw = $(if $(strip $(ROOTPW)),,$(error No root password is set, set it as ROOTPW in your environment.)) +ifdef VERBOSE + $(info root password: $(ROOTPW)) + $(info ) + $(info packer: executable: $(PACKER)) + $(info packer: options: $(PACKER_OPTS)) + $(info ) + $(info ansible: directory: $(ANSIBLE_DIR)) + $(info ) + $(info builder: available: $(AVAILABLE_BUILDERS)) + $(info builder: chosen: $(BUILDER)) + $(info ) + $(info targets: base: $(strip $(BASETARGETS))) + $(info targets: boot: $(strip $(BOOTTARGETS))) + $(info targets: provision: $(strip $(PROVTARGETS))) +endif .PHONY: all help clean all: help @@ -108,7 +123,7 @@ help: @for P in $(PROVTARGETS); do printf "\t%s\n" "$$P"; done @echo @echo "Generate boot files targets:" - @printf "\t<provisioning_target>/boot\n" + @printf "\t<{base,provisioning}_target>/boot\n" # The builds are directories named after the template name clean: |