VOL-4925 - Build and release components.

go.mod
go.sum
------
  o Bump voltha-protos version string to 5.3.8.

makefiles/include.mk
makefiles/lint/include.mk
makefiles/lint/makefile.mk
makefiles/lint/shell.mk
makefiles/lint/yaml/yamllint.mk
-------------------------------
  o Added support for make library lint targets.
  o Move help target text from Makefile into makefiles/help.mk.

Change-Id: I6e54f47cb38c8946330bb3d40d2354a54a7c9a0c
diff --git a/makefiles/lint/include.mk b/makefiles/lint/include.mk
new file mode 100644
index 0000000..2a2d9ab
--- /dev/null
+++ b/makefiles/lint/include.mk
@@ -0,0 +1,24 @@
+# -*- makefile -*-
+# -----------------------------------------------------------------------
+# Copyright 2022 Open Networking Foundation (ONF) and the ONF Contributors
+# -----------------------------------------------------------------------
+
+$(if $(DEBUG),$(warning ENTER))
+
+help ::
+	@echo
+	@echo "[LINT]"
+
+include $(ONF_MAKE)/lint/makefile.mk
+include $(ONF_MAKE)/lint/python.mk
+include $(ONF_MAKE)/lint/shell.mk
+
+ifdef YAML_FILES
+  include $(ONF_MAKE)/lint/yaml/python.mk
+else
+  include $(ONF_MAKE)/lint/yaml/yamllint.mk
+endif
+
+$(if $(DEBUG),$(warning LEAVE))
+
+# [EOF]