makedep: Install also generated typelib for installed idl files.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Jacek Caban 2020-05-17 01:02:36 +02:00 committed by Alexandre Julliard
parent b1084ff910
commit 7a1a77b676
1 changed files with 3 additions and 0 deletions

View File

@ -2829,6 +2829,9 @@ static void output_source_idl( struct makefile *make, struct incl_file *source,
if (source->file->flags & FLAG_IDL_HEADER)
add_install_rule( make, source->name, strmake( "%s.h", obj ),
strmake( "d$(includedir)/wine/%s.h", get_include_install_path( obj ) ));
if (source->file->flags & FLAG_IDL_TYPELIB)
add_install_rule( make, source->name, strmake( "%s.tlb", obj ),
strmake( "d$(includedir)/wine/%s.tlb", get_include_install_path( obj ) ));
}
if (!targets.count) return;