Commit 3c0a2fa5 authored by Alexandre Julliard's avatar Alexandre Julliard

makefiles: Add dependencies for files generated in maintainer mode.

parent 4c7a2b4c
......@@ -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 ))
......
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