From fba952118bba1e5d7295ba34ea6a215477b0c144 Mon Sep 17 00:00:00 2001 From: Sergey Guralnik Date: Wed, 8 Jan 2014 12:56:26 +0200 Subject: winedump: Get rid of the MAKE_DLL_RULES at Makefile.in template. --- tools/winedump/output.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/winedump/output.c b/tools/winedump/output.c index c7804d0..88ce947 100644 --- a/tools/winedump/output.c +++ b/tools/winedump/output.c @@ -457,8 +457,7 @@ void output_makefile (void) if (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); + fprintf (makefile, "\n\nC_SRCS = \\\n\t%s_main.c", OUTPUT_DLL_NAME); if (globals.forward_dll) fprintf (specfile,"#import %s.dll\n", globals.forward_dll); -- 1.7.9.5