===== b-script =====

www.informatik.uni-bremen.de/~jeffry/b-script

dependencies:
    cmake

    optional:
        bison >= 2.4
        flex

build:
    make

    ;-) The toplevel makefile should do the rest for you

    by hand:
        mkdir build
        cd build
        cmake ..
        make
        cd ..

run:
    build/tests/bsc <main-module[-filename]> <entry-function> { <modulelibrary.so> }

    <entry-function> must be a function name declared in the main-module

    for example:

    build/tests/bsc tests/helloWorld.bs main build/tests/libiomath.so

    this command would load the modules from libiomath.so and call the function main in the module (tests/)helloWorld(.bs)

