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
cc0420ac
Commit
cc0420ac
authored
Nov 04, 2015
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Get rid of the obsolete IMPLIB_SRCS variable.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a1a0139d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
9 deletions
+2
-9
Makefile.in
dlls/dinput/Makefile.in
+0
-2
make_makefiles
tools/make_makefiles
+2
-7
No files found.
dlls/dinput/Makefile.in
View file @
cc0420ac
...
...
@@ -16,8 +16,6 @@ C_SRCS = \
keyboard.c
\
mouse.c
IMPLIB_SRCS
=
data_formats.c
IDL_SRCS
=
dinput_classes.idl
RC_SRCS
=
dinput.rc
tools/make_makefiles
View file @
cc0420ac
...
...
@@ -207,7 +207,7 @@ sub parse_makefile($)
$
{
$make
{
"=flags"
}}{
"implib"
}
=
1
if
$var
eq
"IMPORTLIB"
;
next
;
}
if
(
/^\s*(BISON_SRCS|LEX_SRCS|IDL_SRCS|
IMPLIB_SRCS|
C_SRCS|OBJC_SRCS|MC_SRCS|RC_SRCS|SVG_SRCS|FONT_SRCS|IN_SRCS|PROGRAMS|EXTRA_TARGETS|MANPAGES|INSTALL_LIB|INSTALL_DEV)\s*=\s*(.*)/
)
if
(
/^\s*(BISON_SRCS|LEX_SRCS|IDL_SRCS|C_SRCS|OBJC_SRCS|MC_SRCS|RC_SRCS|SVG_SRCS|FONT_SRCS|IN_SRCS|PROGRAMS|EXTRA_TARGETS|MANPAGES|INSTALL_LIB|INSTALL_DEV)\s*=\s*(.*)/
)
{
my
$var
=
$1
;
my
@list
=
split
(
/\s+/
,
$2
);
...
...
@@ -345,11 +345,7 @@ sub assign_sources_to_makefiles(@)
elsif
(
$name
=~
/\.sfd$/
)
{
push
@
{
$
{
$make
}{
"=FONT_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.c$/
)
{
if
(
defined
$flags
{
"implib"
})
{
push
@
{
$
{
$make
}{
"=IMPLIB_SRCS"
}},
$name
;
$
{
$
{
$make
}{
"=flags"
}}{
"staticimplib"
}
=
1
;
}
$
{
$
{
$make
}{
"=flags"
}}{
"staticimplib"
}
=
1
if
defined
$flags
{
"implib"
};
push
@
{
$
{
$make
}{
"=C_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.h$/
)
...
...
@@ -500,7 +496,6 @@ sub update_makefiles(@)
replace_makefile_variable
(
$file
,
"HEADER_SRCS"
);
replace_makefile_variable
(
$file
,
"XTEMPLATE_SRCS"
);
replace_makefile_variable
(
$file
,
"IN_SRCS"
);
replace_makefile_variable
(
$file
,
"IMPLIB_SRCS"
);
replace_makefile_variable
(
$file
,
"MANPAGES"
);
}
...
...
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