1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#/bin/sh -e
#
#
# Copyright (C) 2000-2023 The Xastir Group
#
#
# This simple routine will run autostuff in the appropriate
# order to generate the needed configure/makefiles
#
echo " 5) Removing autom4te.cache directory..."
rm -rf autom4te.cache
echo " 4) Running aclocal..."
aclocal
echo " 3) Running autoheader..."
autoheader
echo " 2) Running autoconf..."
autoconf
# Cygwin needs these parameters to be separate.
echo " 1) Running automake..."
automake -a -c
echo "Bootstrap complete."
|