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
3bc839f1
Commit
3bc839f1
authored
Nov 19, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Only generate auto-documentation rules for dlls.
parent
abc62981
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
14 deletions
+20
-14
Make.rules.in
Make.rules.in
+0
-14
configure
configure
+10
-0
configure.ac
configure.ac
+10
-0
No files found.
Make.rules.in
View file @
3bc839f1
...
@@ -106,20 +106,6 @@ all: $(MANPAGES:.man.in=.man)
...
@@ -106,20 +106,6 @@ all: $(MANPAGES:.man.in=.man)
.PHONY: install-man-pages
.PHONY: install-man-pages
# Rules for auto documentation
manpages:: dummy
$(C2MAN) -o $(top_builddir)/documentation/man$(api_manext) -R$(top_builddir) -C$(srcdir) $(PARENTSRC:%=-P%) -I$(top_srcdir)/include $(MAINSPEC:%=-w %) $(C_SRCS)
htmlpages:: dummy
$(C2MAN) -o $(top_builddir)/documentation/html -R$(top_builddir) -C$(srcdir) $(PARENTSRC:%=-P%) -I$(top_srcdir)/include -Th $(MAINSPEC:%=-w %) $(C_SRCS)
sgmlpages:: dummy
$(C2MAN) -o $(top_builddir)/documentation/api-guide -R$(top_builddir) -C$(srcdir) $(PARENTSRC:%=-P%) -I$(top_srcdir)/include -Ts $(MAINSPEC:%=-w %) $(C_SRCS)
xmlpages:: dummy
$(C2MAN) -o $(top_builddir)/documentation/api-guide-xml -R$(top_builddir) -C$(srcdir) $(PARENTSRC:%=-P%) -I$(top_srcdir)/include -Tx $(MAINSPEC:%=-w %) $(C_SRCS)
# Rules for cleaning
# Rules for cleaning
clean::
clean::
...
...
configure
View file @
3bc839f1
...
@@ -16138,6 +16138,16 @@ IDL_TLB_RES = \$(IDL_TLB_SRCS:.idl=_t.res)
...
@@ -16138,6 +16138,16 @@ IDL_TLB_RES = \$(IDL_TLB_SRCS:.idl=_t.res)
MODULEFLAGS = -shared
\$
(srcdir)/
\$
(MAINSPEC)
\$
(EXTRADLLFLAGS)
MODULEFLAGS = -shared
\$
(srcdir)/
\$
(MAINSPEC)
\$
(EXTRADLLFLAGS)
all:
$deps
all:
$deps
manpages:: dummy
\$
(C2MAN) -o
\$
(top_builddir)/documentation/man
\$
(api_manext) -R
\$
(top_builddir) -C
\$
(srcdir)
\$
(PARENTSRC:%=-P%) -I
\$
(top_srcdir)/include
\$
(MAINSPEC:%=-w %)
\$
(C_SRCS)
htmlpages:: dummy
\$
(C2MAN) -o
\$
(top_builddir)/documentation/html -R
\$
(top_builddir) -C
\$
(srcdir)
\$
(PARENTSRC:%=-P%) -I
\$
(top_srcdir)/include -Th
\$
(MAINSPEC:%=-w %)
\$
(C_SRCS)
sgmlpages:: dummy
\$
(C2MAN) -o
\$
(top_builddir)/documentation/api-guide -R
\$
(top_builddir) -C
\$
(srcdir)
\$
(PARENTSRC:%=-P%) -I
\$
(top_srcdir)/include -Ts
\$
(MAINSPEC:%=-w %)
\$
(C_SRCS)
xmlpages:: dummy
\$
(C2MAN) -o
\$
(top_builddir)/documentation/api-guide-xml -R
\$
(top_builddir) -C
\$
(srcdir)
\$
(PARENTSRC:%=-P%) -I
\$
(top_srcdir)/include -Tx
\$
(MAINSPEC:%=-w %)
\$
(C_SRCS)
.PHONY: manpages htmlpages sgmlpages xmlpages
"
"
...
...
configure.ac
View file @
3bc839f1
...
@@ -2625,6 +2625,16 @@ IDL_TLB_RES = \$(IDL_TLB_SRCS:.idl=_t.res)
...
@@ -2625,6 +2625,16 @@ IDL_TLB_RES = \$(IDL_TLB_SRCS:.idl=_t.res)
MODULEFLAGS = -shared \$(srcdir)/\$(MAINSPEC) \$(EXTRADLLFLAGS)
MODULEFLAGS = -shared \$(srcdir)/\$(MAINSPEC) \$(EXTRADLLFLAGS)
all: $deps
all: $deps
manpages:: dummy
\$(C2MAN) -o \$(top_builddir)/documentation/man\$(api_manext) -R\$(top_builddir) -C\$(srcdir) \$(PARENTSRC:%=-P%) -I\$(top_srcdir)/include \$(MAINSPEC:%=-w %) \$(C_SRCS)
htmlpages:: dummy
\$(C2MAN) -o \$(top_builddir)/documentation/html -R\$(top_builddir) -C\$(srcdir) \$(PARENTSRC:%=-P%) -I\$(top_srcdir)/include -Th \$(MAINSPEC:%=-w %) \$(C_SRCS)
sgmlpages:: dummy
\$(C2MAN) -o \$(top_builddir)/documentation/api-guide -R\$(top_builddir) -C\$(srcdir) \$(PARENTSRC:%=-P%) -I\$(top_srcdir)/include -Ts \$(MAINSPEC:%=-w %) \$(C_SRCS)
xmlpages:: dummy
\$(C2MAN) -o \$(top_builddir)/documentation/api-guide-xml -R\$(top_builddir) -C\$(srcdir) \$(PARENTSRC:%=-P%) -I\$(top_srcdir)/include -Tx \$(MAINSPEC:%=-w %) \$(C_SRCS)
.PHONY: manpages htmlpages sgmlpages xmlpages
")
")
AC_SUBST(MAKE_PROG_RULES,"
AC_SUBST(MAKE_PROG_RULES,"
...
...
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