logkeys/autogen.sh
Jeff Zohrab e95dace329 Cleaned up build autotools and docs.
- not tracking autotools-generated files; people building
  from source should have autotools installed already
- added autogen.sh
- updated build notes
2016-02-10 23:38:21 -05:00

19 lines
452 B
Bash
Executable File

#! /bin/sh
set -e
# Use this script to bootstrap your build AFTER checking it out from
# source control. You should not have to use it for anything else.
# Runs autoconf, autoheader, aclocal, automake, autopoint, libtoolize
echo
echo "Regenerating autotools files ..."
aclocal \
&& autoheader \
&& automake --add-missing \
&& autoconf
echo "... done. Now please do the following:"
echo
echo " cd build; ../configure; make; su; make install"
echo