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
parent e57acabf5a
commit 7cf903e5a2
2 changed files with 15 additions and 0 deletions

View file

@ -41,3 +41,6 @@ Makefile.in
/usr/lib/byobu/include/dirs /usr/lib/byobu/include/dirs
/usr/lib/byobu/include/toggle-utf8 /usr/lib/byobu/include/toggle-utf8
/usr/share/byobu/tests/byobu-time-notifications /usr/share/byobu/tests/byobu-time-notifications
# produced tarballs
/byobu-*.tar.gz

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