toxcore/autogen.sh
grimd34th bcbf3ac609 Create autogen.sh
makes configure script and then runs it
2013-08-30 23:30:26 -04:00

14 lines
182 B
Bash

#!/bin/sh -e
echo 'Running autoreconf -if...'
(
rm -rf autom4te.cache
rm -f aclocal.m4 ltmain.sh
autoreconf -if ${AC_FLAGS}
)
echo 'Running ./configure...'
(
./configure
)