Commit d65d88c8 authored by Tristan Gingold's avatar Tristan Gingold

tools: move _tcl_controls to MakefileSyn class.

parent 24de6c34
......@@ -45,7 +45,6 @@ class ToolMakefile(object):
super(ToolMakefile, self).__init__()
self._file = None
self._initialized = False
self._tcl_controls = {}
self.fileset = None
self.manifest_dict = {}
self._filename = "Makefile"
......
......@@ -27,6 +27,7 @@ class MakefileSyn(ToolMakefile):
def __init__(self):
super(MakefileSyn, self).__init__()
self._tcl_controls = {}
def write_makefile(self, config, fileset, filename=None):
"""Generate a Makefile for the specific synthesis tool"""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment