summaryrefslogtreecommitdiffstats
path: root/configure
blob: 00fca72637405e9509eb40e602806ed1dcb93120 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

tmpl "$@" build.jst.tmpl > build.jst
for lib in ./lib/*; do
	pushd $lib
	./configure "$@"
	popd
done