Skip to content

Commit

Permalink
add autogen.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
efidler committed Oct 5, 2016
1 parent 69ec0ed commit 215313c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#! /bin/sh

if [ -x "`which autoreconf 2>/dev/null`" ] ; then
exec autoreconf -ivf
fi

if glibtoolize --version > /dev/null 2>&1; then
LIBTOOLIZE='glibtoolize'
else
LIBTOOLIZE='libtoolize'
fi

$LIBTOOLIZE && \
aclocal && \
automake --add-missing --force-missing --include-deps && \
autoconf

0 comments on commit 215313c

Please sign in to comment.