aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
blob: c014aee6c1b1c1fc3867418d7b3cde28b4804479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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
if [ $(uname) != FreeBSD ];
then
  WARNINGS="all,error"
  export WARNINGS
fi

autoreconf --install --verbose --force