You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
340 B
32 lines
340 B
#!/bin/sh
|
|
|
|
# Run this script to generate 'configure'
|
|
|
|
usage()
|
|
{
|
|
echo "usage: $0 [tests]"
|
|
exit 1
|
|
}
|
|
|
|
case $# in
|
|
0)
|
|
# disable tests
|
|
rm -f m4/conf_tests.m4
|
|
;;
|
|
1)
|
|
[ $1 = "tests" ] || usage
|
|
|
|
# enable tests
|
|
cp -f tests/conf_tests.m4 m4/ || exit $?
|
|
;;
|
|
*)
|
|
usage
|
|
;;
|
|
esac
|
|
|
|
aclocal -I m4
|
|
autoconf
|
|
autoheader
|
|
automake -a
|
|
automake
|