forked from GNOME/gnome-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautogen.sh
executable file
·44 lines (32 loc) · 939 Bytes
/
autogen.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
(test -f $srcdir/src/main.c) || {
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
echo " top-level gnome-builder directory"
exit 1
}
olddir=`pwd`
cd $srcdir
touch ChangeLog
touch INSTALL
aclocal --install -I build/autotools || exit 1
gtkdocize || exit 1
if command -v mm-common-prepare 2>/dev/null; then
mm-common-prepare --copy --force $srcdir/libidemm
else
touch $srcdir/libidemm/generate-binding.am
touch $srcdir/libidemm/compile-binding.am
fi
autoreconf --force --install -Wno-portability || exit 1
cd $olddir
if [ "$NOCONFIGURE" = "" ]; then
$srcdir/configure "$@" || exit 1
if [ "$1" = "--help" ]; then exit 0 else
echo "Now type \`make\' to compile" || exit 1
fi
else
echo "Skipping configure process."
fi
set +x