ADG

Sign in or create your account | Project List | Help

ADG Glip Source Tree

Root/autogen.sh

1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3
4srcdir=`dirname $0`
5test -z "$srcdir" && srcdir=.
6
7if test ! -f $srcdir/configure.ac -o ! -f $srcdir/src/adg.h; then
8    echo "**Error**: '$srcdir' does not look like the top-level adg directory"
9    exit 1
10fi
11
12cd $srcdir
13glib-gettextize -f || exit $?
14
15# autoreconf interaction with libtool has been broken for ages:
16# explicitely calling libtoolize avoid some problems
17libtoolize --automake || exit $?
18
19autoreconf -is -Wall || exit $?
20
21./configure "$@" && echo "Now type 'make' to compile $PROJECT."
22

Archive Download this file