File tree 5 files changed +11
-24
lines changed
5 files changed +11
-24
lines changed Original file line number Diff line number Diff line change 1
1
TESTDLL = dwrite.dll
2
2
IMPORTS = dwrite gdi32 user32
3
3
4
- C_SRCS = \
4
+ SOURCES = \
5
5
analyzer.c \
6
6
font.c \
7
- layout.c
8
-
9
- FONT_SRCS = \
7
+ layout.c \
8
+ resource.rc \
10
9
wine_test.sfd
11
-
12
- RC_SRCS = resource.rc
Original file line number Diff line number Diff line change 1
1
TESTDLL = gdi32.dll
2
2
IMPORTS = setupapi user32 gdi32 advapi32
3
3
4
- C_SRCS = \
4
+ SOURCES = \
5
5
bitmap.c \
6
6
brush.c \
7
7
clipping.c \
@@ -16,9 +16,8 @@ C_SRCS = \
16
16
metafile.c \
17
17
palette.c \
18
18
path.c \
19
- pen.c
20
-
21
- FONT_SRCS = \
19
+ pen.c \
20
+ resource.rc \
22
21
vertical.sfd \
23
22
wine_langnames.sfd \
24
23
wine_langnames2.sfd \
@@ -29,5 +28,3 @@ FONT_SRCS = \
29
28
wine_ttfnames.sfd \
30
29
wine_ttfnames_bold.sfd \
31
30
wine_vdmx.sfd
32
-
33
- RC_SRCS = resource.rc
Original file line number Diff line number Diff line change 1
1
TESTDLL = gdiplus.dll
2
2
IMPORTS = gdiplus ole32 user32 gdi32
3
3
4
- C_SRCS = \
4
+ SOURCES = \
5
5
brush.c \
6
6
customlinecap.c \
7
7
font.c \
@@ -13,10 +13,7 @@ C_SRCS = \
13
13
pathiterator.c \
14
14
pen.c \
15
15
region.c \
16
- stringformat.c
17
-
18
- RC_SRCS = resource.rc
19
-
20
- FONT_SRCS = \
16
+ resource.rc \
17
+ stringformat.c \
21
18
wine_longname.sfd \
22
19
wine_testfont0.sfd
Original file line number Diff line number Diff line change 1
- FONT_SRCS = \
1
+ SOURCES = \
2
2
courier.sfd \
3
3
fixedsys.sfd \
4
4
fixedsys_jp.sfd \
Original file line number Diff line number Diff line change @@ -338,18 +338,14 @@ sub assign_sources_to_makefiles(@)
338
338
my $make = $makefiles {" $dir /Makefile.in" };
339
339
my $name = substr ( $file , length ($dir ) + 1 );
340
340
341
- if ($name =~ / \. (m|mc|po)$ / )
341
+ if ($name =~ / \. (m|mc|po|sfd )$ / )
342
342
{
343
343
push @{${$make} {" =SOURCES" }}, $name ;
344
344
next ;
345
345
}
346
346
elsif ($name =~ / \. l$ / ) { push @{${$make} {" =LEX_SRCS" }}, $name ; }
347
347
elsif ($name =~ / \. y$ / ) { push @{${$make} {" =BISON_SRCS" }}, $name ; }
348
348
elsif ($name =~ / \. svg$ / ) { push @{${$make} {" =SVG_SRCS" }}, $name ; }
349
- elsif ($name =~ / \. sfd$ / )
350
- {
351
- push @{${$make} {" =FONT_SRCS" }}, $name ;
352
- }
353
349
elsif ($name =~ / \. c$ / )
354
350
{
355
351
push @{${$make} {" =C_SRCS" }}, $name ;
You can’t perform that action at this time.
0 commit comments