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
c047bb6e
Commit
c047bb6e
authored
Oct 12, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Always use the global SOURCES variable for .sfd files.
parent
92fe7c9c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
24 deletions
+11
-24
Makefile.in
dlls/dwrite/tests/Makefile.in
+3
-6
Makefile.in
dlls/gdi32/tests/Makefile.in
+3
-6
Makefile.in
dlls/gdiplus/tests/Makefile.in
+3
-6
Makefile.in
fonts/Makefile.in
+1
-1
make_makefiles
tools/make_makefiles
+1
-5
No files found.
dlls/dwrite/tests/Makefile.in
View file @
c047bb6e
TESTDLL
=
dwrite.dll
TESTDLL
=
dwrite.dll
IMPORTS
=
dwrite gdi32 user32
IMPORTS
=
dwrite gdi32 user32
C_SRC
S
=
\
SOURCE
S
=
\
analyzer.c
\
analyzer.c
\
font.c
\
font.c
\
layout.c
layout.c
\
resource.rc
\
FONT_SRCS
=
\
wine_test.sfd
wine_test.sfd
RC_SRCS
=
resource.rc
dlls/gdi32/tests/Makefile.in
View file @
c047bb6e
TESTDLL
=
gdi32.dll
TESTDLL
=
gdi32.dll
IMPORTS
=
setupapi user32 gdi32 advapi32
IMPORTS
=
setupapi user32 gdi32 advapi32
C_SRC
S
=
\
SOURCE
S
=
\
bitmap.c
\
bitmap.c
\
brush.c
\
brush.c
\
clipping.c
\
clipping.c
\
...
@@ -16,9 +16,8 @@ C_SRCS = \
...
@@ -16,9 +16,8 @@ C_SRCS = \
metafile.c
\
metafile.c
\
palette.c
\
palette.c
\
path.c
\
path.c
\
pen.c
pen.c
\
resource.rc
\
FONT_SRCS
=
\
vertical.sfd
\
vertical.sfd
\
wine_langnames.sfd
\
wine_langnames.sfd
\
wine_langnames2.sfd
\
wine_langnames2.sfd
\
...
@@ -29,5 +28,3 @@ FONT_SRCS = \
...
@@ -29,5 +28,3 @@ FONT_SRCS = \
wine_ttfnames.sfd
\
wine_ttfnames.sfd
\
wine_ttfnames_bold.sfd
\
wine_ttfnames_bold.sfd
\
wine_vdmx.sfd
wine_vdmx.sfd
RC_SRCS
=
resource.rc
dlls/gdiplus/tests/Makefile.in
View file @
c047bb6e
TESTDLL
=
gdiplus.dll
TESTDLL
=
gdiplus.dll
IMPORTS
=
gdiplus ole32 user32 gdi32
IMPORTS
=
gdiplus ole32 user32 gdi32
C_SRC
S
=
\
SOURCE
S
=
\
brush.c
\
brush.c
\
customlinecap.c
\
customlinecap.c
\
font.c
\
font.c
\
...
@@ -13,10 +13,7 @@ C_SRCS = \
...
@@ -13,10 +13,7 @@ C_SRCS = \
pathiterator.c
\
pathiterator.c
\
pen.c
\
pen.c
\
region.c
\
region.c
\
stringformat.c
resource.rc
\
stringformat.c
\
RC_SRCS
=
resource.rc
FONT_SRCS
=
\
wine_longname.sfd
\
wine_longname.sfd
\
wine_testfont0.sfd
wine_testfont0.sfd
fonts/Makefile.in
View file @
c047bb6e
FONT_SRC
S
=
\
SOURCE
S
=
\
courier.sfd
\
courier.sfd
\
fixedsys.sfd
\
fixedsys.sfd
\
fixedsys_jp.sfd
\
fixedsys_jp.sfd
\
...
...
tools/make_makefiles
View file @
c047bb6e
...
@@ -338,7 +338,7 @@ sub assign_sources_to_makefiles(@)
...
@@ -338,7 +338,7 @@ sub assign_sources_to_makefiles(@)
my
$make
=
$makefiles
{
"$dir/Makefile.in"
};
my
$make
=
$makefiles
{
"$dir/Makefile.in"
};
my
$name
=
substr
(
$file
,
length
(
$dir
)
+
1
);
my
$name
=
substr
(
$file
,
length
(
$dir
)
+
1
);
if
(
$name
=~
/\.(m|mc|po)$/
)
if
(
$name
=~
/\.(m|mc|po
|sfd
)$/
)
{
{
push
@
{
$
{
$make
}{
"=SOURCES"
}},
$name
;
push
@
{
$
{
$make
}{
"=SOURCES"
}},
$name
;
next
;
next
;
...
@@ -346,10 +346,6 @@ sub assign_sources_to_makefiles(@)
...
@@ -346,10 +346,6 @@ sub assign_sources_to_makefiles(@)
elsif
(
$name
=~
/\.l$/
)
{
push
@
{
$
{
$make
}{
"=LEX_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.l$/
)
{
push
@
{
$
{
$make
}{
"=LEX_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.y$/
)
{
push
@
{
$
{
$make
}{
"=BISON_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.y$/
)
{
push
@
{
$
{
$make
}{
"=BISON_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.svg$/
)
{
push
@
{
$
{
$make
}{
"=SVG_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.svg$/
)
{
push
@
{
$
{
$make
}{
"=SVG_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.sfd$/
)
{
push
@
{
$
{
$make
}{
"=FONT_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.c$/
)
elsif
(
$name
=~
/\.c$/
)
{
{
push
@
{
$
{
$make
}{
"=C_SRCS"
}},
$name
;
push
@
{
$
{
$make
}{
"=C_SRCS"
}},
$name
;
...
...
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