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
bb86a35f
Commit
bb86a35f
authored
Jul 09, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Allow install rules to run in parallel.
parent
80c62ca2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
84 additions
and
47 deletions
+84
-47
Makefile.in
Makefile.in
+6
-0
aclocal.m4
aclocal.m4
+39
-20
configure
configure
+39
-23
configure.ac
configure.ac
+0
-4
No files found.
Makefile.in
View file @
bb86a35f
...
...
@@ -52,6 +52,12 @@ distclean:: clean
$(RM)
config.
*
configure.lineno TAGS tags include/config.h include/stamp-h Makefile Make.tmp
$(RM)
-r
autom4te.cache
# Rules for uninstalling
.PHONY
:
__uninstall__
uninstall
::
__uninstall__
-
rmdir
$(DESTDIR)$(datadir)
/wine
$(DESTDIR)$(fakedlldir)
$(DESTDIR)$(dlldir)
# Dependencies between directories
# dependencies needed to build any dll or program
...
...
aclocal.m4
View file @
bb86a35f
...
...
@@ -217,23 +217,30 @@ $ac_dir: $ac_dir/Makefile dummy
wine_fn_has_flag install-lib $ac_flags || wine_fn_has_flag install-dev $ac_flags || return
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"install:: $ac_dir
".PHONY: $ac_dir/__install__ $ac_dir/__uninstall__
$ac_dir/__install__:: $ac_dir
@cd $ac_dir && \$(MAKE) install
uninstall:: $ac_dir/Makefile
@cd $ac_dir && \$(MAKE) uninstall"
$ac_dir/__uninstall__:: $ac_dir/Makefile
@cd $ac_dir && \$(MAKE) uninstall
install:: $ac_dir/__install__
__uninstall__: $ac_dir/__uninstall__"
if wine_fn_has_flag install-lib $ac_flags
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"install-lib:: $ac_dir
@cd $ac_dir && \$(MAKE) install-lib"
".PHONY: $ac_dir/__install-lib__
$ac_dir/__install-lib__:: $ac_dir
@cd $ac_dir && \$(MAKE) install-lib
install-lib:: $ac_dir/__install-lib__"
fi
if wine_fn_has_flag install-dev $ac_flags
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"install-dev:: $ac_dir
@cd $ac_dir && \$(MAKE) install-dev"
".PHONY: $ac_dir/__install-dev
$ac_dir/__install-dev__:: $ac_dir
@cd $ac_dir && \$(MAKE) install-dev
install-dev:: $ac_dir/__install-dev__"
fi
}
...
...
@@ -269,14 +276,19 @@ wine_fn_config_dll ()
[test "$ac_enable" != enable_win16 || return 0],
[wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"all: $ac_dir
.PHONY: $ac_dir
.PHONY: $ac_dir
$ac_dir/__install__ $ac_dir/__install-lib__ $ac_dir/__uninstall__
$ac_dir: $ac_dir/Makefile __builddeps__ dummy
@cd $ac_dir && \$(MAKE)
install
:: $ac_dir/Makefile __builddeps__
$ac_dir/__install__
:: $ac_dir/Makefile __builddeps__
@cd $ac_dir && \$(MAKE) install
install-lib
:: $ac_dir/Makefile __builddeps__
$ac_dir/__install-lib__
:: $ac_dir/Makefile __builddeps__
@cd $ac_dir && \$(MAKE) install-lib
uninstall manpages htmlpages sgmlpages xmlpages:: $ac_dir/Makefile
$ac_dir/__uninstall__:: $ac_dir/Makefile
@cd $ac_dir && \$(MAKE) uninstall
install:: $ac_dir/__install__
install-lib:: $ac_dir/__install-lib__
__uninstall__: $ac_dir/__uninstall__
manpages htmlpages sgmlpages xmlpages:: $ac_dir/Makefile
@cd $ac_dir && \$(MAKE) \$[@]"
if test "x$enable_maintainer_mode" = xyes
...
...
@@ -304,8 +316,10 @@ $ac_file.def: $ac_dir/$ac_name.spec $ac_dir/Makefile
@cd $ac_dir && \$(MAKE) lib$ac_implib.def
$ac_file.$STATIC_IMPLIBEXT: $ac_dir/Makefile dummy
@cd $ac_dir && \$(MAKE) lib$ac_implib.$STATIC_IMPLIBEXT
install-dev:: $ac_dir/Makefile __builddeps__
@cd $ac_dir && \$(MAKE) install-dev"
.PHONY: $ac_dir/__install-dev__
$ac_dir/__install-dev__:: $ac_dir/Makefile __builddeps__
@cd $ac_dir && \$(MAKE) install-dev
install-dev:: $ac_dir/__install-dev__"
if test "x$CROSSTEST_DISABLE" = x
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
...
...
@@ -322,8 +336,10 @@ $ac_file.def: $ac_dir/$ac_name.spec $ac_dir/Makefile \$(WINEBUILD)
\$(WINEBUILD) \$(TARGETFLAGS)$ac_implibflags -w --def -o \$[@] --export \$(srcdir)/$ac_dir/$ac_name.spec
$ac_file.a: $ac_dir/$ac_name.spec $ac_dir/Makefile \$(WINEBUILD)
\$(WINEBUILD) \$(TARGETFLAGS)$ac_implibflags -w --implib -o \$[@] --export \$(srcdir)/$ac_dir/$ac_name.spec
install-dev:: $ac_dir/Makefile __builddeps__
@cd $ac_dir && \$(MAKE) install-dev"
.PHONY: $ac_dir/__install-dev__
$ac_dir/__install-dev__:: $ac_dir/Makefile __builddeps__
@cd $ac_dir && \$(MAKE) install-dev
install-dev:: $ac_dir/__install-dev__"
if test "x$CROSSTEST_DISABLE" = x
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
...
...
@@ -383,16 +399,19 @@ $ac_dir: $ac_dir/Makefile __builddeps__ dummy
wine_fn_has_flag install $ac_flags || return
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"install install-lib:: $ac_dir/Makefile __builddeps__
".PHONY: $ac_dir/__install__ $ac_dir/__uninstall__
$ac_dir/__install__:: $ac_dir/Makefile __builddeps__
@cd $ac_dir && \$(MAKE) install
uninstall:: $ac_dir/Makefile
@cd $ac_dir && \$(MAKE) uninstall"
$ac_dir/__uninstall__:: $ac_dir/Makefile
@cd $ac_dir && \$(MAKE) uninstall
install install-lib:: $ac_dir/__install__
__uninstall__: $ac_dir/__uninstall__"
if test -n "$DLLEXT" -a "x$enable_tools" != xno && wine_fn_has_flag installbin $ac_flags
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"
install install-lib
:: tools \$(DESTDIR)\$(bindir)
"
$ac_dir/__install__
:: tools \$(DESTDIR)\$(bindir)
\$(INSTALL_SCRIPT) tools/wineapploader \$(DESTDIR)\$(bindir)/$ac_name
uninstall
::
$ac_dir/__uninstall__
::
\$(RM) \$(DESTDIR)\$(bindir)/$ac_name"
fi])
}
...
...
configure
View file @
bb86a35f
...
...
@@ -14584,23 +14584,30 @@ $ac_dir: $ac_dir/Makefile dummy
wine_fn_has_flag install-lib
$ac_flags
||
wine_fn_has_flag install-dev
$ac_flags
||
return
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
\
"install::
$ac_dir
".PHONY:
$ac_dir
/__install__
$ac_dir
/__uninstall__
$ac_dir
/__install__::
$ac_dir
@cd
$ac_dir
&&
\$
(MAKE) install
uninstall::
$ac_dir
/Makefile
@cd
$ac_dir
&&
\$
(MAKE) uninstall"
$ac_dir
/__uninstall__::
$ac_dir
/Makefile
@cd
$ac_dir
&&
\$
(MAKE) uninstall
install::
$ac_dir
/__install__
__uninstall__:
$ac_dir
/__uninstall__"
if
wine_fn_has_flag install-lib
$ac_flags
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
\
"install-lib::
$ac_dir
@cd
$ac_dir
&&
\$
(MAKE) install-lib"
".PHONY:
$ac_dir
/__install-lib__
$ac_dir
/__install-lib__::
$ac_dir
@cd
$ac_dir
&&
\$
(MAKE) install-lib
install-lib::
$ac_dir
/__install-lib__"
fi
if
wine_fn_has_flag install-dev
$ac_flags
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
\
"install-dev::
$ac_dir
@cd
$ac_dir
&&
\$
(MAKE) install-dev"
".PHONY:
$ac_dir
/__install-dev
$ac_dir
/__install-dev__::
$ac_dir
@cd
$ac_dir
&&
\$
(MAKE) install-dev
install-dev::
$ac_dir
/__install-dev__"
fi
}
...
...
@@ -14636,14 +14643,19 @@ wine_fn_config_dll ()
else
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
\
"all:
$ac_dir
.PHONY:
$ac_dir
.PHONY:
$ac_dir
$ac_dir
/__install__
$ac_dir
/__install-lib__
$ac_dir
/__uninstall__
$ac_dir
:
$ac_dir
/Makefile __builddeps__ dummy
@cd
$ac_dir
&&
\$
(MAKE)
install
::
$ac_dir
/Makefile __builddeps__
$ac_dir
/__install__
::
$ac_dir
/Makefile __builddeps__
@cd
$ac_dir
&&
\$
(MAKE) install
install-lib
::
$ac_dir
/Makefile __builddeps__
$ac_dir
/__install-lib__
::
$ac_dir
/Makefile __builddeps__
@cd
$ac_dir
&&
\$
(MAKE) install-lib
uninstall manpages htmlpages sgmlpages xmlpages::
$ac_dir
/Makefile
$ac_dir
/__uninstall__::
$ac_dir
/Makefile
@cd
$ac_dir
&&
\$
(MAKE) uninstall
install::
$ac_dir
/__install__
install-lib::
$ac_dir
/__install-lib__
__uninstall__:
$ac_dir
/__uninstall__
manpages htmlpages sgmlpages xmlpages::
$ac_dir
/Makefile
@cd
$ac_dir
&&
\$
(MAKE)
\$
@"
if
test
"x
$enable_maintainer_mode
"
=
xyes
...
...
@@ -14672,8 +14684,10 @@ $ac_file.def: $ac_dir/$ac_name.spec $ac_dir/Makefile
@cd
$ac_dir
&&
\$
(MAKE) lib
$ac_implib
.def
$ac_file
.
$STATIC_IMPLIBEXT
:
$ac_dir
/Makefile dummy
@cd
$ac_dir
&&
\$
(MAKE) lib
$ac_implib
.
$STATIC_IMPLIBEXT
install-dev::
$ac_dir
/Makefile __builddeps__
@cd
$ac_dir
&&
\$
(MAKE) install-dev"
.PHONY:
$ac_dir
/__install-dev__
$ac_dir
/__install-dev__::
$ac_dir
/Makefile __builddeps__
@cd
$ac_dir
&&
\$
(MAKE) install-dev
install-dev::
$ac_dir
/__install-dev__"
if
test
"x
$CROSSTEST_DISABLE
"
=
x
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
\
...
...
@@ -14690,8 +14704,10 @@ $ac_file.def: $ac_dir/$ac_name.spec $ac_dir/Makefile \$(WINEBUILD)
\$
(WINEBUILD)
\$
(TARGETFLAGS)
$ac_implibflags
-w --def -o
\$
@ --export
\$
(srcdir)/
$ac_dir
/
$ac_name
.spec
$ac_file
.a:
$ac_dir
/
$ac_name
.spec
$ac_dir
/Makefile
\$
(WINEBUILD)
\$
(WINEBUILD)
\$
(TARGETFLAGS)
$ac_implibflags
-w --implib -o
\$
@ --export
\$
(srcdir)/
$ac_dir
/
$ac_name
.spec
install-dev::
$ac_dir
/Makefile __builddeps__
@cd
$ac_dir
&&
\$
(MAKE) install-dev"
.PHONY:
$ac_dir
/__install-dev__
$ac_dir
/__install-dev__::
$ac_dir
/Makefile __builddeps__
@cd
$ac_dir
&&
\$
(MAKE) install-dev
install-dev::
$ac_dir
/__install-dev__"
if
test
"x
$CROSSTEST_DISABLE
"
=
x
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
\
...
...
@@ -14754,16 +14770,19 @@ $ac_dir: $ac_dir/Makefile __builddeps__ dummy
wine_fn_has_flag
install
$ac_flags
||
return
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
\
"install install-lib::
$ac_dir
/Makefile __builddeps__
".PHONY:
$ac_dir
/__install__
$ac_dir
/__uninstall__
$ac_dir
/__install__::
$ac_dir
/Makefile __builddeps__
@cd
$ac_dir
&&
\$
(MAKE) install
uninstall::
$ac_dir
/Makefile
@cd
$ac_dir
&&
\$
(MAKE) uninstall"
$ac_dir
/__uninstall__::
$ac_dir
/Makefile
@cd
$ac_dir
&&
\$
(MAKE) uninstall
install install-lib::
$ac_dir
/__install__
__uninstall__:
$ac_dir
/__uninstall__"
if
test
-n
"
$DLLEXT
"
-a
"x
$enable_tools
"
!=
xno
&&
wine_fn_has_flag installbin
$ac_flags
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
\
"
install install-lib
:: tools
\$
(DESTDIR)
\$
(bindir)
"
$ac_dir
/__install__
:: tools
\$
(DESTDIR)
\$
(bindir)
\$
(INSTALL_SCRIPT) tools/wineapploader
\$
(DESTDIR)
\$
(bindir)/
$ac_name
uninstall
::
$ac_dir
/__uninstall__
::
\$
(RM)
\$
(DESTDIR)
\$
(bindir)/
$ac_name
"
fi
fi
...
...
@@ -15638,9 +15657,6 @@ clean::
\$
(RM) fonts server tools
$with_wine64
/loader/wine
$with_wine64
/loader/wine-preloader"
fi
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
"uninstall::
-rmdir
\$
(DESTDIR)
\$
(datadir)/wine
\$
(DESTDIR)
\$
(fakedlldir)
\$
(DESTDIR)
\$
(dlldir)"
cat
>
confcache
<<
\
_ACEOF
# This file is a shell script that caches the results of configure
# tests run on this system so they can be shared between configure
...
...
configure.ac
View file @
bb86a35f
...
...
@@ -3120,10 +3120,6 @@ clean::
\$(RM) fonts server tools $with_wine64/loader/wine $with_wine64/loader/wine-preloader])
fi
WINE_APPEND_RULE([ALL_MAKEFILE_DEPENDS],
[uninstall::
-rmdir \$(DESTDIR)\$(datadir)/wine \$(DESTDIR)\$(fakedlldir) \$(DESTDIR)\$(dlldir)])
AC_OUTPUT
if test "$no_create" = "yes"
...
...
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