Added the KiBot config as depenency for all makefile targets.

Any change in the configuration forces a refresh of all targets.
This commit is contained in:
Salvador E. Tropea 2021-02-10 20:30:41 -03:00
parent 20a64aa2bb
commit b5648b1231
1 changed files with 1 additions and 0 deletions

View File

@ -440,6 +440,7 @@ def generate_makefile(makefile, cfg_file, outputs):
for name, dep in dependencies.items():
if name in comments:
f.write('# '+comments[name]+'\n')
dep.append(cfg_file)
f.write(' '.join(targets[name])+': '+' '.join(dep)+'\n')
if name in is_pre:
skip = filter(lambda n: n != name, is_pre)