mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
#1203650: allow larger list of files in windows makefile for freeze.
This commit is contained in:
parent
9c14f2f343
commit
6d61cb4d2f
1 changed files with 7 additions and 5 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue