diff options
author | Emil Velikov <[email protected]> | 2015-03-02 15:58:18 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-03-05 14:45:54 +0000 |
commit | d22391cb165af4ed2f9a9e5d6233072a432cc969 (patch) | |
tree | e3ee74eff4255565177f1df35d0172df6453d8ba /src/mesa/Makefile.sources | |
parent | 3f6c28f2a976e35128b7a4a513cfa60af00301e1 (diff) |
mesa: fix dependency tracking of generated sources
Some of the files generated were not in the SOURCES variable, thus
although generated prior to compilation the dependency tracking was
incomplete. The latter of which resulted in the files missing from the
distribution tarball.
Cc: "10.5" <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/Makefile.sources')
-rw-r--r-- | src/mesa/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/Makefile.sources b/src/mesa/Makefile.sources index 5b4e71253e3..217be9ab3cd 100644 --- a/src/mesa/Makefile.sources +++ b/src/mesa/Makefile.sources @@ -86,6 +86,7 @@ MAIN_FILES = \ main/ffvertex_prog.h \ main/fog.c \ main/fog.h \ + main/format_info.h \ main/format_pack.h \ main/format_pack.c \ main/format_unpack.h \ @@ -100,6 +101,7 @@ MAIN_FILES = \ main/framebuffer.h \ main/get.c \ main/get.h \ + main/get_hash.h \ main/genmipmap.c \ main/genmipmap.h \ main/getstring.c \ |