aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 345ccc2bd9106c1216f006447b7bf4ba558d8e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
#
# This generates our configure scripts and leads us onto the path of 
# the great Makefile...
#

set -e

if [ ! -d config ];
then
  mkdir config;
fi

exec autoreconf -ivf -I src -I config && \
aclocal && \
autoheader && \
autoconf && \
automake --add-missing --copy