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
727ff279
Commit
727ff279
authored
Mar 10, 2014
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makedep: Pass the source directory as root for building documentation.
parent
c3c35dcf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
9 deletions
+13
-9
makedep.c
tools/makedep.c
+13
-9
No files found.
tools/makedep.c
View file @
727ff279
...
...
@@ -1903,32 +1903,36 @@ static struct strarray output_sources(void)
if
(
spec_file
)
{
if
(
c2man_files
.
count
&&
top_obj_dir
)
if
(
c2man_files
.
count
)
{
char
*
manext
=
get_expanded_make_variable
(
"api_manext"
);
output
(
"manpages::
\n
"
);
output
(
"
\t
%s -w %s -R%s"
,
top_dir_path
(
"tools/c2man.pl"
),
spec_file
,
top_obj_dir
);
output
(
"
\t
%s -w %s"
,
top_dir_path
(
"tools/c2man.pl"
),
spec_file
);
output_filename
(
strmake
(
"-R%s"
,
top_dir_path
(
""
)));
output_filename
(
strmake
(
"-I%s"
,
top_dir_path
(
"include"
)));
output_filename
(
strmake
(
"-o %s/
documentation/man%s"
,
top_obj_dir
,
manext
?
manext
:
"3w"
));
output_filename
(
strmake
(
"-o %s/
man%s"
,
top_obj_dir_path
(
"documentation"
)
,
manext
?
manext
:
"3w"
));
output_filenames
(
c2man_files
);
output
(
"
\n
"
);
output
(
"htmlpages::
\n
"
);
output
(
"
\t
%s -Th -w %s -R%s"
,
top_dir_path
(
"tools/c2man.pl"
),
spec_file
,
top_obj_dir
);
output
(
"
\t
%s -Th -w %s"
,
top_dir_path
(
"tools/c2man.pl"
),
spec_file
);
output_filename
(
strmake
(
"-R%s"
,
top_dir_path
(
""
)));
output_filename
(
strmake
(
"-I%s"
,
top_dir_path
(
"include"
)));
output_filename
(
strmake
(
"-o %s
/documentation/html"
,
top_obj_dir
));
output_filename
(
strmake
(
"-o %s
"
,
top_obj_dir_path
(
"documentation/html"
)
));
output_filenames
(
c2man_files
);
output
(
"
\n
"
);
output
(
"sgmlpages::
\n
"
);
output
(
"
\t
%s -Ts -w %s -R%s"
,
top_dir_path
(
"tools/c2man.pl"
),
spec_file
,
top_obj_dir
);
output
(
"
\t
%s -Ts -w %s"
,
top_dir_path
(
"tools/c2man.pl"
),
spec_file
);
output_filename
(
strmake
(
"-R%s"
,
top_dir_path
(
""
)));
output_filename
(
strmake
(
"-I%s"
,
top_dir_path
(
"include"
)));
output_filename
(
strmake
(
"-o %s
/documentation/api-guide"
,
top_obj_dir
));
output_filename
(
strmake
(
"-o %s
"
,
top_obj_dir_path
(
"documentation/api-guide"
)
));
output_filenames
(
c2man_files
);
output
(
"
\n
"
);
output
(
"xmlpages::
\n
"
);
output
(
"
\t
%s -Tx -w %s -R%s"
,
top_dir_path
(
"tools/c2man.pl"
),
spec_file
,
top_obj_dir
);
output
(
"
\t
%s -Tx -w %s"
,
top_dir_path
(
"tools/c2man.pl"
),
spec_file
);
output_filename
(
strmake
(
"-R%s"
,
top_dir_path
(
""
)));
output_filename
(
strmake
(
"-I%s"
,
top_dir_path
(
"include"
)));
output_filename
(
strmake
(
"-o %s
/documentation/api-guide-xml"
,
top_obj_dir
));
output_filename
(
strmake
(
"-o %s
"
,
top_obj_dir_path
(
"documentation/api-guide-xml"
)
));
output_filenames
(
c2man_files
);
output
(
"
\n
"
);
strarray_add
(
&
phony_targets
,
"manpages"
);
...
...
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