#!/bin/bash
cd src
python ../distrib/build.py $*
if [ "$?" != "0" ]; then
    exit 1
fi

cd ../modules
python buildall.py $*
cd ..