Commits
David B. Evans authored da87326f082
1 + | |
2 + | # Run this to generate all the initial makefiles, etc. |
3 + | |
4 + | srcdir=`dirname $0` |
5 + | test -z "$srcdir" && srcdir=. |
6 + | |
7 + | PKG_NAME="libgnomeui" |
8 + | |
9 + | (test -f $srcdir/configure.in \ |
10 + | && test -f $srcdir/autogen.sh \ |
11 + | && test -d $srcdir/libgnomeui) || { |
12 + | echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" |
13 + | echo " top-level $PKG_NAME directory" |
14 + | exit 1 |
15 + | } |
16 + | |
17 + | REQUIRED_INTLTOOL_VERSION=0.40.0 REQUIRED_AUTOMAKE_VERSION=1.9 . gnome-autogen.sh |