medit/autogen.sh

26 lines
391 B
Bash
Raw Normal View History

2005-06-22 18:20:32 +00:00
#! /bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
echo "Generating configuration files..."
echo "Adding libtools..."
libtoolize --automake --copy
echo "Building macros..."
aclocal
echo "Building headers..."
autoheader
echo "Building makefiles..."
automake --add-missing --copy
echo "Building configure..."
autoconf
echo
echo 'run "./configure ; make ; make install"'
echo