makedep: Generate rules for TrueType fonts in maintainer mode.

oldstable
Alexandre Julliard 2013-12-26 20:02:42 +01:00
parent 2535a3b8f6
commit 64b21eee94
7 changed files with 35 additions and 12 deletions

View File

@ -28,13 +28,6 @@ OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(IDL_GEN_C_
CROSSOBJS = $(OBJS:.o=.cross.o)
ALLCROSSCFLAGS = $(DEFS) -DWINE_CROSSTEST $(CPPFLAGS) $(CFLAGS)
# Implicit rules
@MAINTAINER_MODE@.SUFFIXES: .sfd .ttf
.sfd.ttf:
$(FONTFORGE) -script $(top_srcdir)/fonts/genttf.ff $< $@
# Rules for main module
$(MODULE) $(MODULE:%=%.so) $(MODULE:%=%.fake): $(MAINSPEC) $(OBJS)

3
configure vendored
View File

@ -722,7 +722,6 @@ ICOTOOL
CONVERT
RSVG
FONTFORGE
MAINTAINER_MODE
PKG_CONFIG
MSGFMT
INSTALL_DATA
@ -5584,8 +5583,6 @@ fi
if test "x$enable_maintainer_mode" != "xyes"
then
MAINTAINER_MODE=\#
FONTFORGE=""
RSVG=""
CONVERT=""

View File

@ -276,7 +276,6 @@ WINE_PATH_PKG_CONFIG
if test "x$enable_maintainer_mode" != "xyes"
then
AC_SUBST([MAINTAINER_MODE],[\#])
FONTFORGE=""
RSVG=""
CONVERT=""

View File

@ -17,6 +17,11 @@ C_SRCS = \
path.c \
pen.c
FONT_SRCS = \
vertical.sfd \
wine_test.sfd \
wine_vdmx.sfd
RC_SRCS = resource.rc
@MAKE_TEST_RULES@

View File

@ -1,3 +1,17 @@
FONT_SRCS = \
courier.sfd \
fixedsys.sfd \
fixedsys_jp.sfd \
marlett.sfd \
ms_sans_serif.sfd \
small_fonts.sfd \
small_fonts_jp.sfd \
symbol.sfd \
system.sfd \
tahoma.sfd \
tahomabd.sfd \
wingding.sfd
BITMAP_FONTS = \
coue1255.fon \
coue1256.fon \

View File

@ -276,7 +276,7 @@ sub parse_makefile($)
${$make{"=flags"}}{"implib"} = 1 if $var eq "IMPORTLIB";
next;
}
if (/^\s*(BISON_SRCS|LEX_SRCS|IDL_[CHIPRS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|C_SRCS|OBJC_SRCS|MC_SRCS|RC_SRCS|SVG_SRCS|IN_SRCS|PROGRAMS|MANPAGES)\s*=\s*(.*)/)
if (/^\s*(BISON_SRCS|LEX_SRCS|IDL_[CHIPRS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|C_SRCS|OBJC_SRCS|MC_SRCS|RC_SRCS|SVG_SRCS|FONT_SRCS|IN_SRCS|PROGRAMS|MANPAGES)\s*=\s*(.*)/)
{
my $var = $1;
my @list = split(/\s+/, $2);
@ -408,6 +408,7 @@ sub assign_sources_to_makefiles(@)
elsif ($name =~ /\.l$/) { push @{${$make}{"=LEX_SRCS"}}, $name; }
elsif ($name =~ /\.y$/) { push @{${$make}{"=BISON_SRCS"}}, $name; }
elsif ($name =~ /\.svg$/) { push @{${$make}{"=SVG_SRCS"}}, $name; }
elsif ($name =~ /\.sfd$/) { push @{${$make}{"=FONT_SRCS"}}, $name; }
elsif ($name =~ /\.c$/)
{
my %flags = get_makedep_flags( $file );
@ -563,6 +564,7 @@ sub update_makefiles(@)
replace_makefile_variable( $file, "BISON_SRCS" );
replace_makefile_variable( $file, "MC_SRCS" );
replace_makefile_variable( $file, "SVG_SRCS" );
replace_makefile_variable( $file, "FONT_SRCS" );
replace_makefile_variable( $file, "C_SRCS" );
replace_makefile_variable( $file, "OBJC_SRCS" );
replace_makefile_variable( $file, "RC_SRCS" );

View File

@ -1498,6 +1498,18 @@ static struct strarray output_sources(void)
output( "\t$(SED_CMD) %s >$@ || ($(RM) $@ && false)\n", source->filename );
column += output( "%s:", obj );
}
else if (!strcmp( ext, "sfd" )) /* font file */
{
char *fontforge = get_expanded_make_variable( "FONTFORGE" );
if (fontforge && !src_dir)
{
output( "%s.ttf: %s\n", obj, source->filename );
output( "\t%s -script %s/fonts/genttf.ff %s $@\n",
fontforge, top_src_dir ? top_src_dir : top_obj_dir, source->filename );
}
free( fontforge );
continue; /* no dependencies */
}
else if (!strcmp( ext, "svg" )) /* svg file */
{
char *convert = get_expanded_make_variable( "CONVERT" );
@ -1781,6 +1793,7 @@ static void update_makefile( const char *path )
"LEX_SRCS",
"XTEMPLATE_SRCS",
"SVG_SRCS",
"FONT_SRCS",
"IN_SRCS",
"MANPAGES",
NULL