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
78e33111
Commit
78e33111
authored
Apr 12, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed rules for auto documentation (reported by Vincent Béron).
parent
efc069cb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
13 deletions
+42
-13
Makedll.rules.in
dlls/Makedll.rules.in
+4
-13
Makefile.in
dlls/Makefile.in
+19
-0
make_dlls
dlls/make_dlls
+19
-0
No files found.
dlls/Makedll.rules.in
View file @
78e33111
...
@@ -67,25 +67,16 @@ crosstest:: $(SUBDIRS:%=%/__crosstest__)
...
@@ -67,25 +67,16 @@ crosstest:: $(SUBDIRS:%=%/__crosstest__)
# Rules for auto documentation
# Rules for auto documentation
$(SUBDIRS:%=%/__man__): dummy
man: $(C_SRCS)
cd `dirname $@` && $(MAKE) man
man: $(C_SRCS) $(SUBDIRS:%=%/__man__)
$(C2MAN) -o $(TOPOBJDIR)/documentation/man$(api_manext) -R$(TOPOBJDIR) -S$(api_manext) $(DIVINCL) $(MAINSPEC:%=-w %) $(SPEC_SRCS16:%=-w %) $(C_SRCS) $(C_SRCS16)
$(C2MAN) -o $(TOPOBJDIR)/documentation/man$(api_manext) -R$(TOPOBJDIR) -S$(api_manext) $(DIVINCL) $(MAINSPEC:%=-w %) $(SPEC_SRCS16:%=-w %) $(C_SRCS) $(C_SRCS16)
$(SUBDIRS:%=%/__doc_html__): dummy
doc-html: $(C_SRCS)
cd `dirname $@` && $(MAKE) doc-html
doc-html: $(C_SRCS) $(SUBDIRS:%=%/__doc_html__)
$(C2MAN) -o $(TOPOBJDIR)/documentation/html -R$(TOPOBJDIR) $(DIVINCL) -Th $(MAINSPEC:%=-w %) $(SPEC_SRCS16:%=-w %) $(C_SRCS) $(C_SRCS16)
$(C2MAN) -o $(TOPOBJDIR)/documentation/html -R$(TOPOBJDIR) $(DIVINCL) -Th $(MAINSPEC:%=-w %) $(SPEC_SRCS16:%=-w %) $(C_SRCS) $(C_SRCS16)
$(SUBDIRS:%=%/__doc_sgml__): dummy
doc-sgml: $(C_SRCS)
cd `dirname $@` && $(MAKE) doc-sgml
doc-sgml: $(C_SRCS) $(SUBDIRS:%=%/__doc_sgml__)
$(C2MAN) -o $(TOPOBJDIR)/documentation/api-guide -R$(TOPOBJDIR) $(DIVINCL) -Ts $(MAINSPEC:%=-w %) $(SPEC_SRCS16:%=-w %) $(C_SRCS) $(C_SRCS16)
$(C2MAN) -o $(TOPOBJDIR)/documentation/api-guide -R$(TOPOBJDIR) $(DIVINCL) -Ts $(MAINSPEC:%=-w %) $(SPEC_SRCS16:%=-w %) $(C_SRCS) $(C_SRCS16)
.PHONY: man doc-html doc-sgml
$(SUBDIRS:%=%/__man__) $(SUBDIRS:%=%/__doc_html__) $(SUBDIRS:%=%/__doc_sgml__)
.PHONY: man doc-html doc-sgml
# Sanity check
# Sanity check
...
...
dlls/Makefile.in
View file @
78e33111
...
@@ -1568,6 +1568,25 @@ install install-lib:: $(INSTALLSUBDIRS:%=%/__install__)
...
@@ -1568,6 +1568,25 @@ install install-lib:: $(INSTALLSUBDIRS:%=%/__install__)
$(LN_S)
$(dlldir)
/ntdll.dll
$(DLLEXT)
libntdll.dll.
$(LIBEXT)
;
\
$(LN_S)
$(dlldir)
/ntdll.dll
$(DLLEXT)
libntdll.dll.
$(LIBEXT)
;
\
fi
fi
# Rules for auto documentation
$(SUBDIRS
:
%=%/__man__): dummy
cd
`
dirname
$@
`
&&
$(MAKE)
man
man
:
$(SUBDIRS:%=%/__man__)
$(SUBDIRS
:
%=%/__doc_html__): dummy
cd
`
dirname
$@
`
&&
$(MAKE)
doc-html
doc-html
:
$(SUBDIRS:%=%/__doc_html__)
$(SUBDIRS
:
%=%/__doc_sgml__): dummy
cd
`
dirname
$@
`
&&
$(MAKE)
doc-sgml
doc-sgml
:
$(SUBDIRS:%=%/__doc_sgml__)
.PHONY
:
man doc-html doc-sgml $(SUBDIRS:%=%/__man__) $(SUBDIRS:%=%/__doc_html__) $(SUBDIRS:%=%/__doc_sgml__)
# Misc rules
# Misc rules
install install-dev
::
$(IMPORT_LIBS:%=%.$(IMPLIBEXT))
install install-dev
::
$(IMPORT_LIBS:%=%.$(IMPLIBEXT))
...
...
dlls/make_dlls
View file @
78e33111
...
@@ -312,6 +312,25 @@ print NEWMAKE "\tfi\n\n";
...
@@ -312,6 +312,25 @@ print NEWMAKE "\tfi\n\n";
# makefile trailer
# makefile trailer
print
NEWMAKE
<<EOF;
print
NEWMAKE
<<EOF;
# Rules for auto documentation
\$(SUBDIRS:%=%/__man__): dummy
cd `dirname \$@` && \$(MAKE) man
man: \$(SUBDIRS:%=%/__man__)
\$(SUBDIRS:%=%/__doc_html__): dummy
cd `dirname \$@` && \$(MAKE) doc-html
doc-html: \$(SUBDIRS:%=%/__doc_html__)
\$(SUBDIRS:%=%/__doc_sgml__): dummy
cd `dirname \$@` && \$(MAKE) doc-sgml
doc-sgml: \$(SUBDIRS:%=%/__doc_sgml__)
.PHONY: man doc-html doc-sgml \$(SUBDIRS:%=%/__man__) \$(SUBDIRS:%=%/__doc_html__) \$(SUBDIRS:%=%/__doc_sgml__)
# Misc rules
# Misc rules
install install-dev:: \$(IMPORT_LIBS:%=%.\$(IMPLIBEXT))
install install-dev:: \$(IMPORT_LIBS:%=%.\$(IMPLIBEXT))
...
...
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