Update lint-robot to support the latest lint-robot-{all,mod,src} targets

Change-Id: I0e2a7c79b28544dfb34be2e1a3dfb6770f644b68
diff --git a/makefiles/lint/groovy/include.mk b/makefiles/lint/groovy/include.mk
index 5bea853..a2406d4 100644
--- a/makefiles/lint/groovy/include.mk
+++ b/makefiles/lint/groovy/include.mk
@@ -54,11 +54,16 @@
 ## Intent: Perform a lint check on command line script sources
 ## -----------------------------------------------------------------------
 lint-groovy-all:
+
+	$(call banner-enter,Target $@)
+
 	$(groovy-check) --version
 	@echo
 	$(HIDE)$(env-clean) find . -iname '*.groovy' -print0 \
   | $(xargs-n1) $(groovy-check) $(groovy-check-args)
 
+	$(call banner-leave,Target $@)
+
 ## -----------------------------------------------------------------------
 ## Intent: On-demand lint checking
 ## -----------------------------------------------------------------------
@@ -72,7 +77,7 @@
 	$(HIDE) $(groovy-check) $(groovy-check-args) $(GROOVY_SRC)
 
 ## -----------------------------------------------------------------------
-## Intent: Perform lint check on a named list of files
+## Intent: Perform lint check on locally modified sources
 ## -----------------------------------------------------------------------
 # lint-groovy-bygit = $(shell git diff --name-only HEAD | grep '\.groovy')
 lint-groovy-bygit = $(git status -s | grep '\.sh' | grep -v -e '^D' -e '^?' | cut -c4-)