summaryrefslogtreecommitdiff
path: root/bootstrap
blob: 13c6a623cf6227b8f5deb895f36904beca763e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

sh() {
  /bin/sh -c "set -x; $*"
}

sh aclocal
sh automake --foreign --include-deps
sh autoconf

echo
echo You are now ready to run ./configure
echo enjoy!