Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
96e5ac87
Commit
96e5ac87
authored
Sep 09, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Build extra targets explicitly if they are not a dependency.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5adb93c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
Makefile.in
dlls/wineandroid.drv/Makefile.in
+0
-2
makedep.c
tools/makedep.c
+6
-1
No files found.
dlls/wineandroid.drv/Makefile.in
View file @
96e5ac87
...
...
@@ -18,8 +18,6 @@ SVG_SRCS = \
EXTRA_TARGETS
=
wine-debug.apk
all
:
wine-debug.apk
wine-debug.apk
:
build.gradle $(srcdir)/AndroidManifest.xml $(srcdir)/WineActivity.java $(srcdir)/wine.svg
gradle
-q
assembleDebug
mv
build/outputs/apk/wine-debug.apk
$@
tools/makedep.c
View file @
96e5ac87
...
...
@@ -3931,6 +3931,12 @@ static void output_sources( struct makefile *make )
add_install_rule
(
make
,
make
->
scripts
.
str
[
i
],
make
->
scripts
.
str
[
i
],
strmake
(
"S$(bindir)/%s"
,
make
->
scripts
.
str
[
i
]
));
for
(
i
=
0
;
i
<
make
->
extra_targets
.
count
;
i
++
)
if
(
strarray_exists
(
&
make
->
dependencies
,
obj_dir_path
(
make
,
make
->
extra_targets
.
str
[
i
]
)))
strarray_add
(
&
make
->
clean_files
,
make
->
extra_targets
.
str
[
i
]
);
else
strarray_add
(
&
make
->
all_targets
,
make
->
extra_targets
.
str
[
i
]
);
if
(
!
make
->
src_dir
)
strarray_add
(
&
make
->
distclean_files
,
".gitignore"
);
strarray_add
(
&
make
->
distclean_files
,
"Makefile"
);
if
(
make
->
testdll
)
strarray_add
(
&
make
->
distclean_files
,
"testlist.c"
);
...
...
@@ -3969,7 +3975,6 @@ static void output_sources( struct makefile *make )
strarray_addall
(
&
make
->
clean_files
,
make
->
pot_files
);
strarray_addall
(
&
make
->
clean_files
,
make
->
debug_files
);
strarray_addall
(
&
make
->
clean_files
,
make
->
all_targets
);
strarray_addall
(
&
make
->
clean_files
,
make
->
extra_targets
);
if
(
make
->
clean_files
.
count
)
{
...
...
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