1
0
Files
2016-11-30 09:03:17 +08:00

14 lines
233 B
Bash
Executable File

#!/bin/sh
# Run this to generate all the initial makefiles, etc.
test -f configure.in || {
echo "**Error**: This directory does not look like the top-level directory"
exit 1
}
set -e
aclocal
autoheader
automake -a
autoconf