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
f2d60c16
Commit
f2d60c16
authored
Sep 11, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Add separate variable to keep track of source dir font files.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9a542f9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
makedep.c
tools/makedep.c
+3
-1
No files found.
tools/makedep.c
View file @
f2d60c16
...
...
@@ -217,6 +217,7 @@ struct makefile
struct
strarray
crossobj_files
;
struct
strarray
unixobj_files
;
struct
strarray
res_files
;
struct
strarray
font_files
;
struct
strarray
c2man_files
;
struct
strarray
debug_files
;
struct
strarray
dlldata_files
;
...
...
@@ -2935,7 +2936,7 @@ static void output_source_sfd( struct makefile *make, struct incl_file *source,
output
(
"%s: %s
\n
"
,
ttf_file
,
source
->
filename
);
output
(
"
\t
%s -script %s %s $@
\n
"
,
fontforge
,
top_src_dir_path
(
make
,
"fonts/genttf.ff"
),
source
->
filename
);
if
(
!
(
source
->
file
->
flags
&
FLAG_SFD_FONTS
))
output
(
"all: %s
\n
"
,
ttf_file
);
if
(
!
(
source
->
file
->
flags
&
FLAG_SFD_FONTS
))
strarray_add
(
&
make
->
font_files
,
ttf_obj
);
}
if
(
source
->
file
->
flags
&
FLAG_INSTALL
)
{
...
...
@@ -3982,6 +3983,7 @@ static void output_sources( struct makefile *make )
{
output
(
"%s:"
,
obj_dir_path
(
make
,
"all"
));
output_filenames_obj_dir
(
make
,
make
->
all_targets
);
output_filenames_obj_dir
(
make
,
make
->
font_files
);
output
(
"
\n
"
);
strarray_add_uniq
(
&
make
->
phony_targets
,
obj_dir_path
(
make
,
"all"
));
}
...
...
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