winedump: Match the new Makefile format.

This commit is contained in:
Austin English 2010-09-20 22:25:50 -07:00 committed by Alexandre Julliard
parent 4985b464a8
commit 02bdbbc475
1 changed files with 2 additions and 4 deletions

View File

@ -451,13 +451,11 @@ void output_makefile (void)
puts ("Creating makefile");
fprintf (makefile,
"# Generated from %s by winedump.\nTOPSRCDIR = @top_srcdir@\n"
"TOPOBJDIR = ../..\nSRCDIR = @srcdir@\nVPATH = @srcdir@\n"
"# Generated from %s by winedump.\n"
"MODULE = %s.dll\n", globals.input_name, OUTPUT_DLL_NAME);
fprintf (makefile, "IMPORTS = kernel32");
if (globals.forward_dll)
fprintf (makefile, " %s", globals.forward_dll);
fprintf (makefile, "IMPORTS = %s", globals.forward_dll);
fprintf (makefile, "\n\nC_SRCS = \\\n\t%s_main.c\n\n@MAKE_DLL_RULES@\n\n",
OUTPUT_DLL_NAME);