0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 08:20:55 +01:00

Jonathan Giddy:

This second problem only shows up if LDLAST is not an empty string (such
as with threads enabled on DEC Alphas).
This commit is contained in:
Guido van Rossum 1998-06-12 14:09:34 +00:00
parent 590fc2c4fa
commit c8f859a487

View File

@ -24,6 +24,7 @@ def makemakefile(outfp, makevars, files, target):
deps.append(dest)
outfp.write("\n%s: %s\n" % (target, string.join(deps)))
outfp.write("\t$(CC) %s -o %s\n" % (string.join(files), target))
outfp.write("\t$(CC) %s -o %s $(LDLAST)\n" %
(string.join(files), target))
outfp.write("\nclean:\n\t-rm -f *.o %s\n" % target)