Go to file
Jussi Pakkanen baaa988291 Don't chdir into build directory because that causes regereration of parser data every time. 2013-02-17 16:47:42 +02:00
test cases Removed parentheses from if expression. 2013-02-17 16:44:09 +02:00
.gitignore Start of project. 2012-12-23 16:35:35 +02:00
COPYING Start of project. 2012-12-23 16:35:35 +02:00
bparser.py Removed parentheses from if expression. 2013-02-17 16:44:09 +02:00
build.py Can set global flags. 2013-01-26 01:44:56 +02:00
builder.py Don't chdir into build directory because that causes regereration of parser data every time. 2013-02-17 16:47:42 +02:00
builder_install.py Enable PREFIX for the last missing type. 2013-02-15 18:58:34 +02:00
builder_test.py Beginning of an install script. 2013-02-08 20:22:47 +02:00
depfixer.py Fix dependency info. 2013-02-08 21:29:02 +02:00
environment.py Regenerate build info if definition files change. 2013-02-16 21:14:04 +02:00
generators.py Fix regeneration rule so it is not triggered needlessly. 2013-02-16 21:49:00 +02:00
interpreter.py Regenerate build info if definition files change. 2013-02-16 21:14:04 +02:00
nodes.py Enforce keyword order. 2013-02-10 02:01:41 +02:00
readme.txt Renamed generators file. 2013-02-06 19:37:19 +02:00
run_tests.py Fix regeneration rule so it is not triggered needlessly. 2013-02-16 21:49:00 +02:00

readme.txt

This is an experiment to examine what would be
the optimal syntax for a cross-platform build
system.

Dependencies: Python3 and Python-Ply

Running:

Builder requires that you have a source directory and a build directory
and that these two are different. In your source root must exist a file
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 substitute
the current directory and autodetect what you mean. This mean that you
can do things like this:

cd source_root; mkdir build; cd build; builder ..
cd source_root; mkdir build; builder build

For questions contact jpakkane@gmail.com.