Renamed generators file.

pull/15/head
Jussi Pakkanen 12 years ago
parent a21acc1f46
commit 0a3b339384
  1. 4
      builder.py
  2. 0
      generators.py
  3. 2
      readme.txt

@ -18,7 +18,7 @@ from optparse import OptionParser
import sys, stat
import os.path
import environment, interpreter
import shellgenerator, build
import generators, build
parser = OptionParser()
@ -73,7 +73,7 @@ class BuilderApp():
b = build.Build(env)
intr = interpreter.Interpreter(code, b)
intr.run()
g = shellgenerator.ShellGenerator(b, intr)
g = generators.ShellGenerator(b, intr)
g.generate()
if __name__ == '__main__':

@ -12,7 +12,7 @@ called 'builder.txt'. To generate the build system run this command:
builder.py <source directory> <build directory>
You can omit either of the two directories, and Builder will subsitute
You can omit either of the two directories, and Builder will substitute
the current directory and autodetect what you mean. This mean that you
can do things like this:

Loading…
Cancel
Save