https://github.com/igraph/xdata-igraph
Raw File
Tip revision: 06b86098e79ef0ddb286ede16c46254e57017eb1 authored by Gabor Csardi on 10 December 2014, 18:06:01 UTC
Update xdata README, to not merge into main igraph
Tip revision: 06b8609
bootstrap.sh
#! /bin/sh

## Find out our version number, need git for this
printf "Finding out version number/string... "
tools/getversion.sh > VERSION
cat VERSION

for i in glibtoolize libtoolize; do
  LIBTOOLIZE=`which $i` && break
done
if [ -z "$LIBTOOLIZE" ]; then
  echo libtoolize or glibtoolize not found or not in the path!
  exit 1
fi

set -x
aclocal
$LIBTOOLIZE --force --copy
autoheader
automake --add-missing --copy
autoconf
back to top