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
1137f4bf
Commit
1137f4bf
authored
Mar 13, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Consider all .res files as object files.
parent
65f99ed9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
.gitignore
.gitignore
+0
-0
Make.rules.in
Make.rules.in
+2
-3
make_makefiles
tools/make_makefiles
+1
-2
No files found.
.gitignore
View file @
1137f4bf
This diff is collapsed.
Click to expand it.
Make.rules.in
View file @
1137f4bf
...
...
@@ -108,7 +108,7 @@ dlldir = @libdir@/wine
prog_manext = 1
api_manext = 3w
conf_manext = 5
CLEAN_FILES = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej *.flc core
CLEAN_FILES = *.o *.a *.so *.ln *.
res *.
$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej *.flc core
IDL_GEN_C_SRCS = $(IDL_C_SRCS:.idl=_c.c) $(IDL_I_SRCS:.idl=_i.c) \
$(IDL_P_SRCS:.idl=_p.c) $(IDL_S_SRCS:.idl=_s.c)
...
...
@@ -116,8 +116,7 @@ IDL_GEN_HEADERS = $(IDL_H_SRCS:.idl=.h) $(IDL_C_SRCS:.idl=.h) $(IDL_I_SRCS:.idl=
$(IDL_P_SRCS:.idl=.h) $(IDL_S_SRCS:.idl=.h)
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)
$(BISON_SRCS:.y=.tab.c) $(BISON_SRCS:.y=.tab.h) $(LEX_SRCS:.l=.yy.c) $(MC_SRCS:.mc=.mc.rc)
OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(IDL_GEN_C_SRCS:.c=.o) $(EXTRA_OBJS)
...
...
tools/make_makefiles
View file @
1137f4bf
...
...
@@ -69,6 +69,7 @@ my %special_dlls =
# Default patterns for top-level .gitignore
my
@ignores
=
(
"*.[oa]"
,
"*.res"
,
"*.so"
,
"/autom4te.cache"
,
"/config.cache"
,
...
...
@@ -88,8 +89,6 @@ my @ignore_srcs = (
[
'BISON_SRCS'
,
'\.y'
,
'.tab.h'
],
[
'LEX_SRCS'
,
'\.l'
,
'.yy.c'
],
[
'MC_SRCS'
,
'\.mc'
,
'.mc.rc'
],
[
'RC_SRCS'
,
'\.rc'
,
'.res'
],
[
'RC_SRCS16'
,
'\.rc'
,
'.res'
],
[
'IDL_TLB_SRCS'
,
'\.idl'
,
'.tlb'
],
[
'IDL_H_SRCS'
,
'\.idl'
,
'.h'
],
[
'IDL_C_SRCS'
,
'\.idl'
,
'.h'
],
...
...
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