gps/GPSResources/tcpmp/aac/faad2/bootstrap

18 lines
316 B
Bash
Executable File

#! /bin/sh
case $OSTYPE in
darwin*)
LIBTOOLIZE=glibtoolize
;;
*)
LIBTOOLIZE=libtoolize
;;
esac
aclocal -I . && \
autoheader && \
$LIBTOOLIZE --automake --copy && \
automake --add-missing --copy && \
autoconf && \
echo "Ready to run ./configure"