diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2017-01-10 08:35:57 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@gnugeneration.com> | 2017-01-10 08:35:57 -0800 |
commit | 1a807cc5363f9e86153f8f1b40dc0efa0a069280 (patch) | |
tree | 6c136fb5fcf2e614edcd48fe5940c0f7c3d66078 /bootstrap | |
parent | b2a146120d1634120cc42dc88424cac6a01f3a8c (diff) |
build: add bootstrap script
Not everyone knows about `autoreconf --install`
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap new file mode 100755 index 0000000..99f6f06 --- /dev/null +++ b/bootstrap @@ -0,0 +1,5 @@ +#!/bin/sh + +aclocal \ +&& automake --gnu --add-missing \ +&& autoconf |