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

set -e

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