Bulk filter undef vars to support makefile target lint-make

makefiles/include.mk
makefiles/lint/make/include.mk
makefiles/lint/make/makefile.mk
-------------------------------
  o Move lint-make target logic into makefiles/lint/make/

makefiles/lint/make/warn-undef-vars.mk
--------------------------------------
  o Volume undef warnings plague makefile linting.
  o Makefile logic cleanup needed but in the interim valid-but-undef
    vars are defined as "var := $(null)".  This helps shorten the
    error log so lint-make can be used as a default lint target.

Change-Id: I48a0c6b2c71cf1dd5a6554cc5823502ed88482d0
diff --git a/makefiles/lint/include.mk b/makefiles/lint/include.mk
index 2a004af..68f84cc 100644
--- a/makefiles/lint/include.mk
+++ b/makefiles/lint/include.mk
@@ -38,7 +38,7 @@
 include $(ONF_MAKEDIR)/lint/jjb.mk
 include $(ONF_MAKEDIR)/lint/json.mk
 include $(ONF_MAKEDIR)/lint/license/include.mk
-include $(ONF_MAKEDIR)/lint/makefile.mk
+include $(ONF_MAKEDIR)/lint/make/include.mk
 include $(ONF_MAKEDIR)/lint/python/include.mk
 include $(ONF_MAKEDIR)/lint/shell/include.mk
 include $(ONF_MAKEDIR)/lint/tox/include.mk