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
8670876d
Commit
8670876d
authored
Feb 22, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makedep: Don't add dependencies for tests of disabled dlls.
parent
a97fd9f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
makedep.c
tools/makedep.c
+6
-2
No files found.
tools/makedep.c
View file @
8670876d
...
@@ -3558,6 +3558,11 @@ static void output_test_module( struct makefile *make, unsigned int arch )
...
@@ -3558,6 +3558,11 @@ static void output_test_module( struct makefile *make, unsigned int arch )
output
(
"
\t
%secho
\"
%s_test.exe TESTRES
\\\"
%s
\\\"\"
| %s -u -o $@
\n
"
,
cmd_prefix
(
"WRC"
),
output
(
"
\t
%secho
\"
%s_test.exe TESTRES
\\\"
%s
\\\"\"
| %s -u -o $@
\n
"
,
cmd_prefix
(
"WRC"
),
basemodule
,
obj_dir_path
(
make
,
stripped
),
tools_path
(
make
,
"wrc"
));
basemodule
,
obj_dir_path
(
make
,
stripped
),
tools_path
(
make
,
"wrc"
));
if
(
make
->
disabled
[
arch
]
||
(
parent
&&
parent
->
disabled
[
arch
]))
{
make
->
ok_files
=
empty_strarray
;
return
;
}
output_filenames_obj_dir
(
make
,
make
->
ok_files
);
output_filenames_obj_dir
(
make
,
make
->
ok_files
);
output
(
": %s"
,
obj_dir_path
(
make
,
testmodule
));
output
(
": %s"
,
obj_dir_path
(
make
,
testmodule
));
if
(
parent
)
if
(
parent
)
...
@@ -3568,8 +3573,7 @@ static void output_test_module( struct makefile *make, unsigned int arch )
...
@@ -3568,8 +3573,7 @@ static void output_test_module( struct makefile *make, unsigned int arch )
}
}
output
(
"
\n
"
);
output
(
"
\n
"
);
output
(
"%s %s:"
,
obj_dir_path
(
make
,
"check"
),
obj_dir_path
(
make
,
"test"
));
output
(
"%s %s:"
,
obj_dir_path
(
make
,
"check"
),
obj_dir_path
(
make
,
"test"
));
if
(
!
make
->
disabled
[
arch
]
&&
parent
&&
!
parent
->
disabled
[
arch
])
output_filenames_obj_dir
(
make
,
make
->
ok_files
);
output_filenames_obj_dir
(
make
,
make
->
ok_files
);
output
(
"
\n
"
);
output
(
"
\n
"
);
strarray_add_uniq
(
&
make
->
phony_targets
,
obj_dir_path
(
make
,
"check"
));
strarray_add_uniq
(
&
make
->
phony_targets
,
obj_dir_path
(
make
,
"check"
));
strarray_add_uniq
(
&
make
->
phony_targets
,
obj_dir_path
(
make
,
"test"
));
strarray_add_uniq
(
&
make
->
phony_targets
,
obj_dir_path
(
make
,
"test"
));
...
...
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