1#!/bin/sh
2set -e
3cd `dirname $0`/..
4for i in output/*/build.ninja; do
5    ninja -C `dirname "$i"` "$@"
6done
7