Bunch of small fixes emailed to me from phaethon

Kent
--
mein@cs.umn.edu
This commit is contained in:
2002-11-29 17:07:58 +00:00
parent 3fe6959360
commit 651fa32eaa
5 changed files with 39 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ def makemakefile(outfp, makevars, files, target):
for key in keys:
outfp.write("%s=%s\n" % (key, makevars[key]))
outfp.write("\n\ninclude nan_definitions.mk\n")
# outfp.write("\n\ninclude nan_definitions.mk\n")
outfp.write("\nall: %s\n\n" % libtarget)
deps = []
@@ -50,8 +50,9 @@ def makemakefile(outfp, makevars, files, target):
# libfiles.remove('M___main__.o') # don't link with __main__
outfp.write("\n%s: $(OBJS)\n" % (libtarget))
outfp.write("\t$(AR) ruv %s%s $(OBJS)\n" %
("$(OCGDIR)/blender/bpython/$(DEBUG_DIR)", targetlib))
# outfp.write("\t$(AR) ruv %s%s $(OBJS)\n" %
# ("$(OCGDIR)/blender/bpython/$(DEBUG_DIR)", targetlib))
outfp.write("\t$(AR) ruv %s $(OBJS)\n" % targetlib)
outfp.write("\n%s: %s $(OBJS)\n" % (target, mainfile))
outfp.write("\t$(CC) %s %s -o %s $(LDLAST)\n" %