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
90d66cc8
Commit
90d66cc8
authored
Oct 22, 2015
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Only define the dummy target in makefiles that need it.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ded44ed9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
4 deletions
+9
-4
Make.vars.in
Make.vars.in
+1
-2
Makefile.in
Makefile.in
+2
-1
Makefile.in
libs/wine/Makefile.in
+3
-1
Makefile.in
programs/winetest/Makefile.in
+3
-0
No files found.
Make.vars.in
View file @
90d66cc8
...
...
@@ -72,7 +72,6 @@ conf_manext = 5
@SET_MAKE@
all:
dummy:
.PHONY: all dummy
.PHONY: all
# End of common header
Makefile.in
View file @
90d66cc8
...
...
@@ -50,8 +50,9 @@ uninstall:: __uninstall__
# dependencies needed to build any dll or program
__tooldeps__
:
libs/port libs/wine libs/wpp
__builddeps__
:
__tooldeps__ include
.PHONY
:
depend check test testclean crosstest __tooldeps__ __builddeps__
.PHONY
:
depend
dummy
check test testclean crosstest __tooldeps__ __builddeps__
dummy
:
loader
:
libs/port libs/wine tools
server
:
libs/port libs/wine tools include
fonts
:
tools/sfnt2fon
...
...
libs/wine/Makefile.in
View file @
90d66cc8
...
...
@@ -107,8 +107,10 @@ config_EXTRADEFS = \
version.c
:
dummy
version
=
`
(
GIT_DIR
=
$(top_srcdir)
/.git git describe HEAD 2>/dev/null
||
echo
"wine-@PACKAGE_VERSION@"
)
|
sed
-n
-e
'$$s/\(.*\)/const char wine_build[] = "\1";/p'
`
&&
(
echo
$$
version | cmp
-s
-
$@
)
||
echo
$$
version
>
$@
||
(
$(RM)
$@
&&
exit
1
)
dummy
:
# Make sure that make_makefiles sees the generated rules
.PHONY
:
install install-lib install-dev uninstall
.PHONY
:
dummy
install install-lib install-dev uninstall
install install-lib
::
install install-dev
::
clean
::
...
...
programs/winetest/Makefile.in
View file @
90d66cc8
...
...
@@ -26,3 +26,6 @@ build.nfo:
build.res
:
build.rc build.nfo
$(WRC)
-o
$@
build.rc
dummy
:
.PHONY
:
dummy
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