From 6d61cb4d2fc1cd0b412bdf0cf15337751e56f0d2 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 21 Oct 2010 13:34:51 +0000 Subject: [PATCH] #1203650: allow larger list of files in windows makefile for freeze. --- Tools/freeze/winmakemakefile.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Tools/freeze/winmakemakefile.py b/Tools/freeze/winmakemakefile.py index 7d198c152fa..3843388c119 100644 --- a/Tools/freeze/winmakemakefile.py +++ b/Tools/freeze/winmakemakefile.py @@ -134,12 +134,14 @@ def realwork(vars, moddefns, target): print() ; print() print("$(target)$(debug_suffix)%s: $(temp_dir) $(OBJS)" % (target_ext)) - print("\tlink -out:$(target)$(debug_suffix)%s %s" % (target_ext, target_link_flags), end=' ') - print("\t$(OBJS) \\") - print("\t$(LIBS) \\") - print("\t$(ADDN_LINK_FILES) \\") - print("\t$(pythonlib) $(lcustom) $(l_debug)\\") + print("\tlink -out:$(target)$(debug_suffix)%s %s" % + (target_ext, target_link_flags), "@<<") + print("\t$(OBJS)") + print("\t$(LIBS)") + print("\t$(ADDN_LINK_FILES)") + print("\t$(pythonlib) $(lcustom) $(l_debug)") print("\t$(resources)") + print("<<") print() print("clean:") print("\t-rm -f *.obj")