[VOL-5286] - JJB: Upgrade common-packer to v0.7.1

packer/common-packer
--------------------
  o Upgrade packer to v0.7.1
  o v0.7.0 (unreleased) is a dependency for global-jjb upgrade to v0.57.0

Makefile
--------
  o Cleanup old help target text in prep for repo:onf-make checkout.

[HOWTO: Test]
% make help
% make build -or- jjb-gen
% make lint  -or- lint-jjb

Change-Id: I887c98435ed2c76c3f0be7ace4fa97cc77ad5f64
diff --git a/Makefile b/Makefile
index 489303c..2cd5161 100644
--- a/Makefile
+++ b/Makefile
@@ -54,12 +54,43 @@
 
 # make help not widely in use yet so be explicit
 help ::
+
 	@echo
 	@echo 'Usage: $(MAKE) help ...'
+
 	@echo '  % make clean sterile'
-	@echo '  % make lint lint-jjb'
-	@echo '  % make build           # jjb-gen'
+	@printf '  %-33.33s %s\n' 'lint' \
+	  'Invoke syntax checking targets'
+	@printf '  %-33.33s %s\n' 'build' \
+	  'Invoke jenkins-jobs to regenerate pipelines'
 	@echo '  % make test'
 	@echo '  % make help            # show all available targes'
 
+	@echo
+	@echo '[HELP: modifiers]'
+	@printf '  %-33.33s %s\n' '{topic}-help' \
+	  'Display extended help for individual makefile targets'
+	@printf '  %-33.33s %s\n' 'help-verbose' \
+	  'Display exhaustive help'
+
+## -----------------------------------------------------------------------
+## -----------------------------------------------------------------------
+build-help :
+	@printf '  %-33.33s %s\n' 'build' \
+	  'Alias for $(MAKE) jjb-gen'
+	@printf '  %-33.33s %s\n' 'jjb-gen' \
+	  'Invoke jenkins-jobs to regenerate pipelines'
+
+## -----------------------------------------------------------------------
+## -----------------------------------------------------------------------
+lint-help :
+	@printf '  %-33.33s %s\n' 'lint' \
+	  'Perform syntax checking on configured sources'
+	@printf '  %-33.33s %s\n' 'lint-jjb' \
+	  'Invoke jenkins-jobs to syntax check JJB source'
+
+## -----------------------------------------------------------------------
+## -----------------------------------------------------------------------
+help-verbose :: help $(help-verbose)
+
 # [EOF]