Commit dfc829ce authored by Alexandre Julliard's avatar Alexandre Julliard

makefiles: Shared library and import library are not exclusive for PE builds.

parent 5aa0144e
...@@ -3624,11 +3624,13 @@ static void output_sources( struct makefile *make ) ...@@ -3624,11 +3624,13 @@ static void output_sources( struct makefile *make )
if (make->staticlib) output_static_lib( make ); if (make->staticlib) output_static_lib( make );
else if (make->module) output_module( make ); else if (make->module) output_module( make );
else if (make->importlib) output_import_lib( make );
else if (make->sharedlib) output_shared_lib( make );
else if (make->testdll) output_test_module( make ); else if (make->testdll) output_test_module( make );
else
if (make->programs.count) output_programs( make ); {
if (make->importlib) output_import_lib( make );
if (make->sharedlib) output_shared_lib( make );
if (make->programs.count) output_programs( make );
}
for (i = 0; i < make->scripts.count; i++) for (i = 0; i < make->scripts.count; i++)
add_install_rule( make, make->scripts.str[i], make->scripts.str[i], add_install_rule( make, make->scripts.str[i], make->scripts.str[i],
......
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