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
d4593274
Commit
d4593274
authored
Oct 15, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Generate explicit build rules for dlldata.c from makedep.
parent
d9a75184
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
Make.rules.in
Make.rules.in
+0
-5
makedep.c
tools/makedep.c
+10
-0
No files found.
Make.rules.in
View file @
d4593274
...
...
@@ -65,11 +65,6 @@ CROSSOBJS = $(OBJS:.o=.cross.o)
.po.mo:
$(MSGFMT) -o $@ $<
# Rules for IDL files
dlldata.c: $(WIDL) Makefile.in
$(WIDL) $(IDLFLAGS) --dlldata-only -o $@ $(IDL_P_SRCS)
# Rules for main module
$(MODULE) $(MODULE:%=%.so) $(MODULE:%=%.fake): $(MAINSPEC) $(OBJS) Makefile.in
...
...
tools/makedep.c
View file @
d4593274
...
...
@@ -1096,6 +1096,16 @@ static void output_sources(void)
if
(
strendswith
(
source
->
name
,
".mc"
))
output_filename
(
source
->
filename
,
&
column
);
output
(
"
\n
"
);
}
if
(
find_src_file
(
"dlldata.o"
))
{
output
(
"dlldata.c: $(WIDL) Makefile.in
\n
"
);
column
=
output
(
"
\t
$(WIDL) $(IDLFLAGS) --dlldata-only -o $@"
);
LIST_FOR_EACH_ENTRY
(
source
,
&
sources
,
struct
incl_file
,
entry
)
if
(
strendswith
(
source
->
name
,
".idl"
)
&&
find_target_src_file
(
source
->
name
,
"_p.c"
))
output_filename
(
source
->
filename
,
&
column
);
output
(
"
\n
"
);
}
}
...
...
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