Commit c7693d97 authored by Guido van Rossum's avatar Guido van Rossum

Reindented, removed tabs.

Also added simple "clean" target (removes *.o and executable).
parent 16f231c1
......@@ -10,7 +10,7 @@ def makemakefile(outfp, makevars, files, target):
keys.sort()
for key in keys:
outfp.write("%s=%s\n" % (key, makevars[key]))
outfp.write("\nall: %s\n" % target)
outfp.write("\nall: %s\n\n" % target)
deps = []
for i in range(len(files)):
......@@ -25,3 +25,9 @@ def makemakefile(outfp, makevars, files, target):
outfp.write("\n%s: %s\n" % (target, string.join(deps)))
outfp.write("\t$(CC) %s -o %s\n" % (string.join(files), target))
outfp.write("\nclean:\n\t-rm -f *.o %s\n" % target)
# Local Variables:
# indent-tabs-mode: nil
# End:
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment