configure (112B)
1#!/bin/sh 2 3tmpl "$@" build.jst.tmpl > build.jst 4for lib in ./lib/*; do 5 pushd $lib 6 ./configure "$@" 7 popd 8done