File: autogen.sh

package info (click to toggle)
dasher 5.0.0~beta~repack2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 70,908 kB
  • sloc: xml: 181,314; cpp: 70,858; java: 8,020; python: 3,579; makefile: 936; sh: 320; ansic: 223; perl: 71
file content (19 lines) | stat: -rwxr-xr-x 404 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

REQUIRED_AUTOMAKE_VERSION=1.8

PKG_NAME="dasher"

(test -f $srcdir/configure.ac \
  && test -f $srcdir/README \
  && test -d $srcdir/Src) || {
    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
    echo " top-level $PKG_NAME directory"
    exit 1
}

autoreconf -vfi