add autogen.sh script

can be used to make release tarball using:

./autogen.sh
./configure
make dist
This commit is contained in:
Elan Ruusamäe 2016-09-06 08:49:31 +03:00
commit 7cf903e5a2
2 changed files with 15 additions and 0 deletions

12
autogen.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/sh
set -e
autoreconf -fiv
cat << EOF
The byobu build system is now prepared.
To build here, run:
./configure
make
EOF