summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: af80ec0bab06b93c5362a08824f6baf2ef6ee066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# usage: ./autogen.sh [-f]
# option "-f" means forcefully create symlinks for missing files
#                   (by default: copies are made only if necessary)

if [ x"$1" = x-f ]
  then shift ; am_opt='--force'
  else         am_opt='--copy'
fi

aclocal && autoheader && automake -a $am_opt && autoconf