root/vte/trunk/autogen.sh

Revision 80, 0.5 kB (checked in by inz, 1 year ago)

Add autogen.

  • Property svn:executable set to *
Line 
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
3
4 srcdir=`dirname $0`
5 test -z "$srcdir" && srcdir=.
6
7 REQUIRED_AUTOMAKE_VERSION=1.8
8
9 PKG_NAME="vte"
10
11 (test -f $srcdir/configure.in \
12   && test -f $srcdir/README \
13   && test -d $srcdir/src) || {
14     echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
15     echo " top-level $PKG_NAME directory"
16     exit 1
17 }
18
19 which gnome-autogen.sh || {
20     echo "You need to install gnome-common from the GNOME CVS"
21     exit 1
22 }
23 USE_GNOME2_MACROS=1 USE_COMMON_DOC_BUILD=yes . gnome-autogen.sh
Note: See TracBrowser for help on using the browser.