fwknop/autogen.sh

16 lines
215 B
Bash
Executable File

#!/bin/sh
#
# autogen.sh
#
# Run this script to generate all the initial makefiles, etc.
#
set -x
aclocal -I config
libtoolize --automake --copy --force
autoheader
automake --add-missing --copy
autoconf
###EOF###