Go to file
Jussi Pakkanen 40c001772b Generate linking rules. 2013-02-06 20:37:46 +02:00
test cases Remove references to build directory when installing. 2013-02-03 17:51:05 +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 Added support for numbers. 2013-01-27 22:18:40 +02:00
build.py Can set global flags. 2013-01-26 01:44:56 +02:00
builder.py Support for multiple backends. 2013-02-06 19:45:23 +02:00
depfixer.py Elf dependency eraser finally works. 2013-02-03 17:30:26 +02:00
environment.py Build rule for static linking and some comments. 2013-02-06 20:15:07 +02:00
generators.py Generate linking rules. 2013-02-06 20:37:46 +02:00
interpreter.py Put build directories in #include path. 2013-01-28 02:13:06 +02:00
nodes.py Added support for numbers. 2013-01-27 22:18:40 +02:00
readme.txt Renamed generators file. 2013-02-06 19:37:19 +02:00
run_tests.py Added target install option. 2013-01-12 02:25:06 +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.