From 872ed63b77e0c3525f7c5e211107e11adc5e7ce6 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 2 Mar 2004 05:00:52 +0000 Subject: [PATCH] Removed obsolete definitions from generated makefiles. --- tools/winedump/output.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/winedump/output.c b/tools/winedump/output.c index 3b593bcc996..5b6aff3d7cf 100644 --- a/tools/winedump/output.c +++ b/tools/winedump/output.c @@ -432,14 +432,12 @@ void output_makefile (void) "TOPOBJDIR = ../..\nSRCDIR = @srcdir@\nVPATH = @srcdir@\n" "MODULE = %s.dll\n", globals.input_name, OUTPUT_DLL_NAME); - fprintf (makefile, "IMPORTS = user32 advapi32 kernel32 ntdll"); + fprintf (makefile, "IMPORTS = kernel32"); if (globals.forward_dll) fprintf (makefile, " %s", globals.forward_dll); fprintf (makefile, - "\nEXTRALIBS = $(LIBUNICODE)\n\nLDDLLFLAGS = @LDDLLFLAGS@\n" - "SYMBOLFILE = $(MODULE).tmp.o\n\n" - "C_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:", OUTPUT_DLL_NAME); if (globals.forward_dll)