Commit a9f3ccda authored by Tim Hockin's avatar Tim Hockin

Fix Makefile deps to rebuild less often

This should only rebuild when ACTUALLY needed.
parent 9613e158
...@@ -102,4 +102,4 @@ kubernetes.tar.gz ...@@ -102,4 +102,4 @@ kubernetes.tar.gz
zz_generated.* zz_generated.*
# make-related metadata # make-related metadata
.make.* /.make/
...@@ -63,6 +63,8 @@ def get_all_files(rootdir): ...@@ -63,6 +63,8 @@ def get_all_files(rootdir):
dirs.remove('third_party') dirs.remove('third_party')
if '.git' in dirs: if '.git' in dirs:
dirs.remove('.git') dirs.remove('.git')
if '.make' in dirs:
dirs.remove('.make')
if 'exceptions.txt' in files: if 'exceptions.txt' in files:
files.remove('exceptions.txt') files.remove('exceptions.txt')
if 'known-flags.txt' in files: if 'known-flags.txt' in files:
......
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