File: autogen.sh

package info (click to toggle)
gsynaptics 0.9.14-6
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,064 kB
  • ctags: 241
  • sloc: sh: 9,331; ansic: 1,601; xml: 421; makefile: 138
file content (22 lines) | stat: -rwxr-xr-x 383 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

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

run()
{
    $@
    if test $? -ne 0; then
	echo "Failed $@"
	exit 1
    fi
}

run libtoolize --copy --force
run glib-gettextize --force --copy
run intltoolize --force --copy --automake
run aclocal $ACLOCAL_FLAGS
run autoheader
run gnome-doc-prepare --copy --force
run automake --add-missing --foreign --copy
run autoconf