]> git.proxmox.com Git - swtpm.git/blame - autogen.sh
swtpm_setup: Implement option --create-config-files to create config files
[swtpm.git] / autogen.sh
CommitLineData
f9227dda
MAL
1#!/bin/sh
2
3set -e # exit on errors
4
5srcdir=`dirname $0`
6test -z "$srcdir" && srcdir=.
7
8olddir=`pwd`
9cd "$srcdir"
10
eaa658cb
SB
11test ! -d m4 && mkdir m4
12
f9227dda
MAL
13autoreconf --verbose --force --install
14
15cd "$olddir"
16if [ -z "$NOCONFIGURE" ]; then
17 "$srcdir"/configure ${1+"$@"}
18fi