isync/autogen.sh
2000-12-20 22:10:45 +00:00

16 lines
168 B
Bash
Executable File

#!/bin/sh
# $Id$
aclocal
if test $? -ne 0; then
exit
fi
automake --add-missing
if test $? -ne 0; then
exit
fi
autoconf
if test $? -ne 0; then
exit
fi
./configure $@