mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 00:26:16 +03:00
47 lines
1.1 KiB
Bash
47 lines
1.1 KiB
Bash
#!/bin/sh
|
|
#autoreconf --install
|
|
|
|
# Thanks, https://github.com/raywill/automake
|
|
|
|
export AUTOM4TE="autom4te"
|
|
export AUTOCONF="autoconf"
|
|
|
|
# On OSX, it's glibtoolize
|
|
LIBTOOLIZE=$(which libtoolize)
|
|
if [ "$LIBTOOLIZE" = "" ]; then
|
|
LIBTOOLIZE=$(which glibtoolize)
|
|
fi
|
|
if [ "$LIBTOOLIZE" = "" ]; then
|
|
echo "CANNOT CONTINUE! MISSING (G)LIBTOOLIZE! Install libtool!" >&2
|
|
exit 2
|
|
fi
|
|
|
|
case "x$1" in
|
|
xinit)
|
|
[ -d m4 ] || mkdir m4
|
|
set -x
|
|
autoheader
|
|
aclocal
|
|
$LIBTOOLIZE --force --copy --automake
|
|
autoconf --force
|
|
automake --foreign --copy --add-missing -Woverride
|
|
;;
|
|
xclean)
|
|
echo 'cleaning...'
|
|
make distclean >/dev/null 2>&1
|
|
rm -rf autom4te.cache
|
|
for fn in aclocal.m4 configure config.guess config.sub depcomp install-sh \
|
|
ltmain.sh libtool missing mkinstalldirs config.log config.status Makefile; do
|
|
rm -f $fn
|
|
done
|
|
|
|
find . -name Makefile.in -exec rm -f {} \;
|
|
find . -name Makefile -exec rm -f {} \;
|
|
find . -name .deps -prune -exec rm -rf {} \;
|
|
echo 'done'
|
|
;;
|
|
*)
|
|
./configure
|
|
;;
|
|
esac
|