diff options
| author | Georg Brandl <georg@python.org> | 2010-10-21 13:34:51 +0000 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2010-10-21 13:34:51 +0000 |
| commit | 6d61cb4d2fc1cd0b412bdf0cf15337751e56f0d2 (patch) | |
| tree | 3a592ea2b77bda36ad7f64dc94e18f3d733be33c /Tools/freeze/winmakemakefile.py | |
| parent | 9c14f2f3437d295ea4e858103cff2197e508ef10 (diff) | |
| download | cpython-git-6d61cb4d2fc1cd0b412bdf0cf15337751e56f0d2.tar.gz | |
#1203650: allow larger list of files in windows makefile for freeze.
Diffstat (limited to 'Tools/freeze/winmakemakefile.py')
| -rw-r--r-- | Tools/freeze/winmakemakefile.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Tools/freeze/winmakemakefile.py b/Tools/freeze/winmakemakefile.py index 7d198c152f..3843388c11 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") |
