Update metadata for Ansible galaxy support

Change-Id: I6665d2987e50baf5e15812c3a836e137f38940a6
diff --git a/.reuse/dep5 b/.reuse/dep5
index 18d8100..76a1085 100644
--- a/.reuse/dep5
+++ b/.reuse/dep5
@@ -1,5 +1,5 @@
 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 
-Files: VERSION README.md .gitreview
+Files: VERSION README.md .gitreview README.md
 Copyright: 2021 Open Networking Foundation
 License: Apache-2.0
diff --git a/Makefile b/Makefile
index 802852a..be48afa 100644
--- a/Makefile
+++ b/Makefile
@@ -23,10 +23,13 @@
     -d "{extends: default, rules: {line-length: {max: 99}}}" \
     -s $(YAML_FILES)
 
+# List of molecule files, not including base molecule.yml which isn't ansible format
+MOLECULE_FILES ?= $(shell find molecule -type f -name '*.yml' \! -name 'molecule.yml' -print )
+
 ansiblelint: ## lint check with ansible-lint
 	ansible-lint --version
 	ansible-lint -v .
-	ansible-lint -v molecule/*/*
+	ansible-lint -v $(MOLECULE_FILES)
 
 license: ## Check license with the reuse tool
 	reuse --version