e16/autogen.sh

11 lines
186 B
Bash
Raw Normal View History

#!/bin/sh
# Run this to generate all the initial makefiles, etc.
2018-08-11 21:46:51 -07:00
rm -rf autom4te.cache aclocal.m4
2018-08-11 21:46:51 -07:00
autoreconf -vif
if [ -z "$NOCONFIGURE" -a "$1" != "-n" ]; then
2018-08-11 21:46:51 -07:00
./configure "$@"
2006-02-11 01:36:11 -08:00
fi