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
8c875111
Commit
8c875111
authored
Jan 23, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make_makefiles: Ignore IDL_H_SRCS targets in all directories.
parent
f9663f18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
make_makefiles
tools/make_makefiles
+6
-8
No files found.
tools/make_makefiles
View file @
8c875111
...
...
@@ -89,6 +89,7 @@ my @ignore_srcs = (
[
'RC_SRCS'
,
'\.rc'
,
'.res'
],
[
'RC_SRCS16'
,
'\.rc'
,
'.res'
],
[
'IDL_TLB_SRCS'
,
'\.idl'
,
'.tlb'
],
[
'IDL_H_SRCS'
,
'\.idl'
,
'.h'
],
[
'IDL_C_SRCS'
,
'\.idl'
,
'_c.c'
],
[
'IDL_I_SRCS'
,
'\.idl'
,
'_i.c'
],
[
'IDL_P_SRCS'
,
'\.idl'
,
'_p.c'
],
...
...
@@ -101,7 +102,7 @@ my (@makefiles, %makefiles);
sub
update_file
($)
{
my
$file
=
shift
;
my
$ret
=
system
"cmp $file $file.new >/dev/null"
;
my
$ret
=
!
(
-
f
$file
)
||
system
"cmp $file $file.new >/dev/null"
;
if
(
!
$ret
)
{
unlink
"$file.new"
;
...
...
@@ -317,8 +318,10 @@ sub update_ignores(@)
push
@list
,
map
{
(
my
$ret
=
$_
)
=~
s/$pattern[1]$/$pattern[2]/
;
$ret
;
}
@
{
$makefile
{
$pattern
[
0
]}};
}
push
@list
,
@
{
$makefile
{
"RC_BINARIES"
}}
if
defined
$makefile
{
"RC_BINARIES"
};
push
@ignores
,
map
{
$makefile
{
"=dir"
}
.
$_
;
}
@list
;
foreach
my
$f
(
@list
)
{
push
@ignores
,
$makefile
{
"=dir"
}
.
$f
unless
$f
=~
/\$\(.*\)/
;
# skip make variables
}
}
return
@ignores
;
}
...
...
@@ -382,11 +385,6 @@ sub update_dlls(@)
my
@list
=
map
{
$_
=~
s/\.spec$//
;
$_
.=
".dll"
unless
$_
=~
/\./
;
$_
;
}
@
{
$makefile
{
"SPEC_SRCS16"
}};
$altnames
{
$module
}
=
\
@list
;
}
if
(
defined
$makefile
{
"IDL_H_SRCS"
})
{
push
@ignores
,
map
{
$_
=~
s/(.*)\.idl$/dlls\/$dir\/$1.h/
;
$_
;
}
@
{
$makefile
{
"IDL_H_SRCS"
}};
}
}
# output special dlls configure definitions
...
...
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