Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
dfc829ce
Commit
dfc829ce
authored
Feb 26, 2018
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Shared library and import library are not exclusive for PE builds.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5aa0144e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
makedep.c
tools/makedep.c
+6
-4
No files found.
tools/makedep.c
View file @
dfc829ce
...
...
@@ -3624,11 +3624,13 @@ static void output_sources( struct makefile *make )
if
(
make
->
staticlib
)
output_static_lib
(
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
);
if
(
make
->
programs
.
count
)
output_programs
(
make
);
else
{
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
++
)
add_install_rule
(
make
,
make
->
scripts
.
str
[
i
],
make
->
scripts
.
str
[
i
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment