makefiles: Add dependencies for files generated in maintainer mode.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2022-01-21 09:50:45 +01:00
parent 4c7a2b4cbb
commit 3c0a2fa5a6
1 changed files with 7 additions and 0 deletions

View File

@ -1386,6 +1386,13 @@ static struct file *open_include_file( const struct makefile *make, struct incl_
/* check for generated files */
if ((file = open_local_generated_file( make, pFile, ".tab.h", ".y" ))) return file;
if ((file = open_local_generated_file( make, pFile, ".h", ".idl" ))) return file;
if (fontforge && (file = open_local_generated_file( make, pFile, ".ttf", ".sfd" ))) return file;
if (convert && rsvg && icotool)
{
if ((file = open_local_generated_file( make, pFile, ".bmp", ".svg" ))) return file;
if ((file = open_local_generated_file( make, pFile, ".cur", ".svg" ))) return file;
if ((file = open_local_generated_file( make, pFile, ".ico", ".svg" ))) return file;
}
/* check for extra targets */
if (strarray_exists( &make->extra_targets, pFile->name ))