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
3cc14dc3
Commit
3cc14dc3
authored
Mar 25, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Output the top-level clean rules explicitly for each module.
parent
18e5313c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
15 deletions
+11
-15
Makefile.in
Makefile.in
+3
-9
aclocal.m4
aclocal.m4
+4
-2
configure
configure
+4
-4
No files found.
Makefile.in
View file @
3cc14dc3
...
...
@@ -27,8 +27,6 @@ VPATH = @srcdir@
LIBEXT
=
@LIBEXT@
MODULE
=
none
ALL_DIRS
=
@ALL_DIRS@
# Sub-directories that don't have a makefile
EXTRASUBDIRS
=
dlls libs
...
...
@@ -63,18 +61,14 @@ $(ALL_CONFIGS):
# Rules for cleaning
$(ALL_DIRS
:
%=%/__clean__): dummy
@
cd
`
dirname
$@
`
&&
$(MAKE)
clean
clean
::
$(ALL_DIRS:%=%/__clean__)
$(RM)
$
(
ALL_DIRS:%
=
%/Makefile
)
tools/makedep
$(EXEEXT)
.PHONY
:
__clean__
clean
::
__clean__
$(RM)
tools/makedep
$(EXEEXT)
distclean
::
clean
$(RM)
config.
*
configure.lineno TAGS tags include/config.h include/stamp-h
$(ALL_CONFIGS)
$(RM)
-r
autom4te.cache
.PHONY
:
distclean $(ALL_DIRS:%=%/__clean__)
# Dependencies between directories
# dependencies needed to build any dll or program
...
...
aclocal.m4
View file @
3cc14dc3
...
...
@@ -146,7 +146,6 @@ AC_SUBST(ALL_WINETEST_DEPENDS,["# Test binaries"])
AC_SUBST(ALL_MAKERULES,"")
AC_SUBST(ALL_SYMLINKS,"")
AC_SUBST(ALL_DIRS,"")
AC_SUBST(ALL_TEST_BINARIES,"")
AC_SUBST(ALL_PROGRAM_BIN_INSTALL_DIRS,"")
...
...
@@ -164,7 +163,10 @@ wine_fn_all_dir_rules ()
{
wine_fn_append_file ALL_DIRS $[1]
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"$[1]/__clean__: $[1]/Makefile
"__clean__ .PHONY: $[1]/__clean__
$[1]/__clean__: $[1]/Makefile
@cd $[1] && \$(MAKE) clean
\$(RM) $[1]/Makefile
$[1]/Makefile: $[1]/Makefile.in config.status $[2]
@./config.status --file $[1]/Makefile && cd $[1] && \$(MAKE) depend
depend .PHONY: $[1]/__depend__
...
...
configure
View file @
3cc14dc3
...
...
@@ -598,7 +598,6 @@ ac_subst_vars='LTLIBOBJS
LIBOBJS
ALL_PROGRAM_BIN_INSTALL_DIRS
ALL_TEST_BINARIES
ALL_DIRS
ALL_SYMLINKS
ALL_MAKERULES
ALL_WINETEST_DEPENDS
...
...
@@ -13855,8 +13854,6 @@ ALL_MAKERULES=""
ALL_SYMLINKS
=
""
ALL_DIRS
=
""
ALL_TEST_BINARIES
=
""
ALL_PROGRAM_BIN_INSTALL_DIRS
=
""
...
...
@@ -13876,7 +13873,10 @@ wine_fn_all_dir_rules ()
{
wine_fn_append_file ALL_DIRS
$1
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
\
"
$1
/__clean__:
$1
/Makefile
"__clean__ .PHONY:
$1
/__clean__
$1
/__clean__:
$1
/Makefile
@cd
$1
&&
\$
(MAKE) clean
\$
(RM)
$1
/Makefile
$1
/Makefile:
$1
/Makefile.in config.status
$2
@./config.status --file
$1
/Makefile && cd
$1
&&
\$
(MAKE) depend
depend .PHONY:
$1
/__depend__
...
...
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