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
5012c17a
Commit
5012c17a
authored
Aug 07, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make.rules: Make all submake invocations silent for consistency.
parent
2f356c78
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
Make.rules.in
Make.rules.in
+7
-7
Makefile.in
Makefile.in
+1
-1
Makefile.in
documentation/Makefile.in
+3
-3
No files found.
Make.rules.in
View file @
5012c17a
...
...
@@ -200,7 +200,7 @@ winapi_check:: dummy
# Rules for dependencies
$(SUBDIRS:%=%/__depend__): dummy
cd `dirname $@` && $(MAKE) depend
@
cd `dirname $@` && $(MAKE) depend
depend: $(IDL_SRCS:.idl=.h) $(SUBDIRS:%=%/__depend__)
$(MAKEDEP) -C$(SRCDIR) -S$(TOPSRCDIR) -T$(TOPOBJDIR) $(EXTRAINCL) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_SRCS) $(EXTRA_SRCS)
...
...
@@ -210,10 +210,10 @@ depend: $(IDL_SRCS:.idl=.h) $(SUBDIRS:%=%/__depend__)
# Rules for cleaning
$(SUBDIRS:%=%/__clean__): dummy
cd `dirname $@` && $(MAKE) clean
@
cd `dirname $@` && $(MAKE) clean
$(SUBDIRS:%=%/__testclean__): dummy
cd `dirname $@` && $(MAKE) testclean
@
cd `dirname $@` && $(MAKE) testclean
$(EXTRASUBDIRS:%=%/__clean__): dummy
-cd `dirname $@` && $(RM) $(CLEAN_FILES)
...
...
@@ -228,16 +228,16 @@ clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
# Rules for installing
$(SUBDIRS:%=%/__install__): dummy
cd `dirname $@` && $(MAKE) install
@
cd `dirname $@` && $(MAKE) install
$(SUBDIRS:%=%/__install-lib__): dummy
cd `dirname $@` && $(MAKE) install-lib
@
cd `dirname $@` && $(MAKE) install-lib
$(SUBDIRS:%=%/__install-dev__): dummy
cd `dirname $@` && $(MAKE) install-dev
@
cd `dirname $@` && $(MAKE) install-dev
$(SUBDIRS:%=%/__uninstall__): dummy
cd `dirname $@` && $(MAKE) uninstall
@
cd `dirname $@` && $(MAKE) uninstall
install:: $(INSTALLSUBDIRS:%=%/__install__)
...
...
Makefile.in
View file @
5012c17a
...
...
@@ -127,7 +127,7 @@ tags ctags:
find
$(TOPSRCDIR)
/
-name
'*.[ch]'
-print
| ctags
--c-types
=
+px
-L
-
manpages htmlpages sgmlpages
:
cd
documentation
&&
$(MAKE)
$@
@
cd
documentation
&&
$(MAKE)
$@
clean
::
$(RM)
wine
...
...
documentation/Makefile.in
View file @
5012c17a
...
...
@@ -8,15 +8,15 @@ MODULE = none
manpages
:
$(MKINSTALLDIRS)
man
$(api_manext)
cd
$(DLLDIR)
&&
$(MAKE)
man
@
cd
$(DLLDIR)
&&
$(MAKE)
man
htmlpages
:
$(MKINSTALLDIRS)
html
cd
$(DLLDIR)
&&
$(MAKE)
doc-html
@
cd
$(DLLDIR)
&&
$(MAKE)
doc-html
sgmlpages
:
$(MKINSTALLDIRS)
api-guide
cd
$(DLLDIR)
&&
$(MAKE)
doc-sgml
@
cd
$(DLLDIR)
&&
$(MAKE)
doc-sgml
.PHONY
:
manpages htmlpages sgmlpages
...
...
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