forked from SawfishWM/sawfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autogen.sh
executable file
·39 lines (33 loc) · 851 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
#!/bin/sh
if [ -f Makefile ]; then
make distclean
fi
if [ -f aclocal.m4 ]; then
rm -fv aclocal.m4
fi
if [ -d m4 ]; then
rm -fv m4/*
fi
if [ -f configure.ac ]; then
if grep "AC_CONFIG_HEADER" configure.ac >/dev/null; then
echo "Running autoheader"
autoheader || exit 1
fi
if grep "AM_PROG_LIBTOOL" configure.ac >/dev/null; then
echo "Running libtoolize"
lver=$(libtoolize --version | grep 1.5)
if [ "x${lver}" != "x" ]; then
libtoolize --force --copy || exit 1
else libtoolize --force --copy --install || exit 1
fi
fi
# echo "Running intltoolize"
# intltoolize --copy --force
echo "Running aclocal $ACLOCAL_FLAGS"
aclocal -I m4 $ACLOCAL_FLAGS || exit 1
echo "Running autoconf $AUTOCONF_FLAGS"
autoconf $AUTOCONF_FLAGS || exit 1
fi
if [ "${1}" != "--nocfg" ]; then
./configure "$@"
fi