clang-tidy: Rename mako files

Rename the mako template files to end in .mako so that clang-tidy
doesn't run on them.

Tested:
elog-errors.hpp is still generated
callouts-gen.hpp is still generated

Change-Id: I9af4b9c31db9743b5af81d801f98901431bc7e2f
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/callouts/callouts.py b/callouts/callouts.py
index abf42f5..d14ad94 100755
--- a/callouts/callouts.py
+++ b/callouts/callouts.py
@@ -32,7 +32,7 @@
         calloutsMap = yaml.safe_load(fd)
 
         # Render the mako template
-        template = os.path.join(script_dir, "callouts-gen.mako.hpp")
+        template = os.path.join(script_dir, "callouts-gen.hpp.mako")
         t = Template(filename=template)
         with open(args.output, "w") as fd:
             fd.write(t.render(calloutsMap=calloutsMap))