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
b0585bf1
Commit
b0585bf1
authored
Dec 10, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make.rules: Added rules for building the dlldata.c file.
parent
1dbc9d50
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
.gitignore
.gitignore
+1
-0
Make.rules.in
Make.rules.in
+6
-1
make_makefiles
tools/make_makefiles
+1
-0
widl.c
tools/widl/widl.c
+1
-1
No files found.
.gitignore
View file @
b0585bf1
...
...
@@ -10,6 +10,7 @@
/tags
/wine
Makefile
dlldata.c
dlls/Makedll.rules
dlls/Makeimplib.rules
dlls/Maketest.rules
...
...
Make.rules.in
View file @
b0585bf1
...
...
@@ -114,7 +114,7 @@ IDL_GEN_C_SRCS = $(IDL_C_SRCS:.idl=_c.c) $(IDL_I_SRCS:.idl=_i.c) \
IDL_GEN_HEADERS = $(IDL_H_SRCS:.idl=.h) $(IDL_C_SRCS:.idl=.h) $(IDL_I_SRCS:.idl=.h) \
$(IDL_P_SRCS:.idl=.h) $(IDL_S_SRCS:.idl=.h)
CLEAN_TARGETS = $(IDL_GEN_C_SRCS) $(IDL_GEN_HEADERS) $(IDL_TLB_SRCS:.idl=.tlb) \
CLEAN_TARGETS = $(IDL_GEN_C_SRCS) $(IDL_GEN_HEADERS) $(IDL_TLB_SRCS:.idl=.tlb)
$(IDL_P_SRCS:%=dlldata.c)
\
$(BISON_SRCS:.y=.tab.c) $(BISON_SRCS:.y=.tab.h) $(LEX_SRCS:.l=.yy.c) \
$(MC_SRCS:.mc=.mc.rc) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res)
...
...
@@ -193,6 +193,11 @@ filter: dummy
.PHONY: all filter
# Rules for IDL files
dlldata.c: $(WIDL) Makefile.in
$(WIDL) $(IDLFLAGS) --dlldata-only --dlldata=$@ $(IDL_P_SRCS)
# Rules for resources
$(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(IDL_TLB_SRCS:.idl=.tlb)
...
...
tools/make_makefiles
View file @
b0585bf1
...
...
@@ -77,6 +77,7 @@ my @ignores = (
"/TAGS"
,
"/tags"
,
"Makefile"
,
"dlldata.c"
,
"include/config.h"
,
"include/stamp-h"
);
...
...
tools/widl/widl.c
View file @
b0585bf1
...
...
@@ -225,7 +225,7 @@ typedef struct
static
void
add_filename_node
(
struct
list
*
list
,
const
char
*
name
)
{
filename_node_t
*
node
=
xmalloc
(
sizeof
*
node
);
node
->
filename
=
xstrdup
(
name
);
node
->
filename
=
dup_basename
(
name
,
".idl"
);
list_add_tail
(
list
,
&
node
->
link
);
}
...
...
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