Module: wine Branch: master Commit: 02bdbbc4752562bfd79ff3a2630b4f6dcb915fa5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=02bdbbc4752562bfd79ff3a263...
Author: Austin English austinenglish@gmail.com Date: Mon Sep 20 22:25:50 2010 -0700
winedump: Match the new Makefile format.
---
tools/winedump/output.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/tools/winedump/output.c b/tools/winedump/output.c index e0697f8..5b0e1f5 100644 --- a/tools/winedump/output.c +++ b/tools/winedump/output.c @@ -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);