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
4fde1e23
Commit
4fde1e23
authored
Aug 23, 2014
by
Felix Janda
Committed by
Alexandre Julliard
Sep 05, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makedep: Don't mix options and arguments for wrc and widl.
parent
f6035080
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
makedep.c
tools/makedep.c
+10
-4
No files found.
tools/makedep.c
View file @
4fde1e23
...
...
@@ -1816,7 +1816,7 @@ static struct strarray output_sources( struct makefile *make, struct strarray *t
strarray_add
(
&
res_files
,
strmake
(
"%s.res"
,
obj
));
output
(
"%s.res: %s %s
\n
"
,
obj_dir_path
(
make
,
obj
),
tools_path
(
make
,
"wrc"
),
source
->
filename
);
output
(
"
\t
%s -o $@
%s"
,
tools_path
(
make
,
"wrc"
),
source
->
filename
);
output
(
"
\t
%s -o $@
"
,
tools_path
(
make
,
"wrc"
)
);
if
(
make
->
is_win16
)
output_filename
(
"-m16"
);
else
output_filenames
(
target_flags
);
output_filename
(
"--nostdinc"
);
...
...
@@ -1827,13 +1827,18 @@ static struct strarray output_sources( struct makefile *make, struct strarray *t
{
strarray_add
(
&
po_files
,
source
->
filename
);
output_filename
(
strmake
(
"--po-dir=%s"
,
top_obj_dir_path
(
make
,
"po"
)));
output_filename
(
source
->
filename
);
output
(
"
\n
"
);
output
(
"%s.res:"
,
obj_dir_path
(
make
,
obj
));
output_filenames
(
mo_files
);
output
(
"
\n
"
);
output
(
"%s "
,
obj_dir_path
(
make
,
"rsrc.pot"
));
}
else
output
(
"
\n
"
);
else
{
output_filename
(
source
->
filename
);
output
(
"
\n
"
);
}
output
(
"%s.res:"
,
obj_dir_path
(
make
,
obj
));
}
else
if
(
!
strcmp
(
ext
,
"mc"
))
/* message file */
...
...
@@ -1873,12 +1878,13 @@ static struct strarray output_sources( struct makefile *make, struct strarray *t
if
(
source
->
file
->
flags
&
FLAG_IDL_PROXY
)
strarray_add
(
&
dlldata_files
,
source
->
name
);
output_filenames_obj_dir
(
make
,
targets
);
output
(
": %s
\n
"
,
tools_path
(
make
,
"widl"
));
output
(
"
\t
%s -o $@
%s"
,
tools_path
(
make
,
"widl"
),
source
->
filename
);
output
(
"
\t
%s -o $@
"
,
tools_path
(
make
,
"widl"
)
);
output_filenames
(
target_flags
);
output_filenames
(
includes
);
output_filenames
(
make
->
define_args
);
output_filenames
(
extradefs
);
output_filenames
(
get_expanded_make_var_array
(
make
,
"EXTRAIDLFLAGS"
));
output_filename
(
source
->
filename
);
output
(
"
\n
"
);
output_filenames_obj_dir
(
make
,
targets
);
output
(
": %s"
,
source
->
filename
);
...
...
@@ -2038,12 +2044,12 @@ static struct strarray output_sources( struct makefile *make, struct strarray *t
output_filenames
(
po_files
);
output
(
"
\n
"
);
output
(
"
\t
%s -O pot -o $@"
,
tools_path
(
make
,
"wrc"
));
output_filenames
(
po_files
);
if
(
make
->
is_win16
)
output_filename
(
"-m16"
);
else
output_filenames
(
target_flags
);
output_filename
(
"--nostdinc"
);
output_filenames
(
includes
);
output_filenames
(
make
->
define_args
);
output_filenames
(
po_files
);
output
(
"
\n
"
);
strarray_add
(
&
clean_files
,
"rsrc.pot"
);
}
...
...
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