makefiles: Generate the crosstest disabled rule from makedep.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
84ddddfffb
commit
2fa7ae05f2
|
@ -18198,9 +18198,6 @@ Makefile: $srcdir/Makefile.in config.status \$(MAKEDEP)
|
||||||
depend: \$(MAKEDEP) dummy
|
depend: \$(MAKEDEP) dummy
|
||||||
\$(MAKEDEP)"
|
\$(MAKEDEP)"
|
||||||
|
|
||||||
test -n "$CROSSTARGET" || wine_fn_append_rule "crosstest:
|
|
||||||
@echo \"crosstest is not supported (mingw not installed?)\" && false"
|
|
||||||
|
|
||||||
if test "x$enable_fonts" != xno; then
|
if test "x$enable_fonts" != xno; then
|
||||||
ac_config_links="$ac_config_links fonts/marlett.ttf:fonts/marlett.ttf"
|
ac_config_links="$ac_config_links fonts/marlett.ttf:fonts/marlett.ttf"
|
||||||
ac_config_links="$ac_config_links fonts/symbol.ttf:fonts/symbol.ttf"
|
ac_config_links="$ac_config_links fonts/symbol.ttf:fonts/symbol.ttf"
|
||||||
|
|
|
@ -2797,10 +2797,6 @@ Makefile: $srcdir/Makefile.in config.status \$(MAKEDEP)
|
||||||
depend: \$(MAKEDEP) dummy
|
depend: \$(MAKEDEP) dummy
|
||||||
\$(MAKEDEP)])
|
\$(MAKEDEP)])
|
||||||
|
|
||||||
test -n "$CROSSTARGET" || WINE_APPEND_RULE(
|
|
||||||
[crosstest:
|
|
||||||
@echo \"crosstest is not supported (mingw not installed?)\" && false])
|
|
||||||
|
|
||||||
WINE_CONFIG_SYMLINK(fonts,fonts,[marlett.ttf,symbol.ttf,tahoma.ttf,tahomabd.ttf,wingding.ttf],enable_fonts)
|
WINE_CONFIG_SYMLINK(fonts,fonts,[marlett.ttf,symbol.ttf,tahoma.ttf,tahomabd.ttf,wingding.ttf],enable_fonts)
|
||||||
WINE_CONFIG_SYMLINK(loader,loader,[l_intl.nls])
|
WINE_CONFIG_SYMLINK(loader,loader,[l_intl.nls])
|
||||||
WINE_CONFIG_SYMLINK(,tools,[wine],,winewrapper)
|
WINE_CONFIG_SYMLINK(,tools,[wine],,winewrapper)
|
||||||
|
|
|
@ -3547,13 +3547,13 @@ static void output_subdirs( struct makefile *make )
|
||||||
strarray_add( &make->phony_targets, "check" );
|
strarray_add( &make->phony_targets, "check" );
|
||||||
strarray_add( &make->phony_targets, "test" );
|
strarray_add( &make->phony_targets, "test" );
|
||||||
}
|
}
|
||||||
if (crosstest_deps.count)
|
output( "crosstest:" );
|
||||||
{
|
output_filenames( crosstest_deps );
|
||||||
output( "crosstest:" );
|
output( "\n" );
|
||||||
output_filenames( crosstest_deps );
|
if (!crosstest_deps.count)
|
||||||
output( "\n" );
|
output( "\t@echo \"crosstest is not supported (mingw not installed?)\" && false\n" );
|
||||||
strarray_add( &make->phony_targets, "crosstest" );
|
strarray_add( &make->phony_targets, "crosstest" );
|
||||||
}
|
|
||||||
output( "clean::\n");
|
output( "clean::\n");
|
||||||
output_rm_filenames( clean_files );
|
output_rm_filenames( clean_files );
|
||||||
output( "testclean::\n");
|
output( "testclean::\n");
|
||||||
|
|
Loading…
Reference in New Issue