summaryrefslogtreecommitdiff
path: root/core/src/sv/autogen.sh
blob: 586ab6a35a89a8bb788b6050f2441da30f6aea2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# autogen.sh --
#
# Run this in the top source directory to rebuild the infrastructure.

LIBTOOLIZE=${LIBTOOLIZE:=libtoolize}

set -xe
test -d m4 || mkdir -p m4
test -f m4/libtool.m4 || "$LIBTOOLIZE"
autoreconf --warnings=all --install --verbose "$@"

### end of file