winedump: Fix the output for Makefile.in with respect to the dependencies line to match that required by the build system.

This commit is contained in:
Rob Shearman 2007-03-21 12:35:43 +00:00 committed by Alexandre Julliard
parent d51c1c7a04
commit 9142716529
1 changed files with 2 additions and 1 deletions

View File

@ -440,7 +440,8 @@ void output_makefile (void)
fprintf (makefile, " %s", globals.forward_dll);
fprintf (makefile,
"\n\nC_SRCS = \\\n\t%s_main.c\n\n@MAKE_DLL_RULES@\n\n### Dependencies:",
"\n\nC_SRCS = \\\n\t%s_main.c\n\n@MAKE_DLL_RULES@\n\n"
"@DEPENDENCIES@ # everything below this line is overwritten by make depend",
OUTPUT_DLL_NAME);
if (globals.forward_dll)