diff options
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap new file mode 100755 index 0000000..0f61946 --- /dev/null +++ b/bootstrap @@ -0,0 +1,10 @@ +#!/bin/sh + +# change to root directory +cd $(dirname "$0") + +# run auto.* tools +aclocal --force && \ + autoheader --force && \ + automake --gnu --add-missing --force-missing --copy && \ + autoconf --force |