chiark / gitweb /
869632abb09886ffda98827e0ca89a94c66e9827
[elogind.git] / autogen.sh
1 #!/bin/bash
2
3 #  This file is part of systemd.
4 #
5 #  systemd is free software; you can redistribute it and/or modify it
6 #  under the terms of the GNU Lesser General Public License as published by
7 #  the Free Software Foundation; either version 2.1 of the License, or
8 #  (at your option) any later version.
9 #
10 #  systemd is distributed in the hope that it will be useful, but
11 #  WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 #  Lesser General Public License for more details.
14 #
15 #  You should have received a copy of the GNU Lesser General Public License
16 #  along with systemd; If not, see <http://www.gnu.org/licenses/>.
17
18 if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
19     cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \
20     chmod +x .git/hooks/pre-commit && \
21     echo "Activated pre-commit hook."
22 fi
23
24 GTKDOCIZE=`which gtkdocize`
25 if test -z $GTKDOCIZE; then
26     echo "You don't have gtk-doc installed, and thus"
27     echo "won't be able to generate the documentation."
28     NOGTKDOC=1
29     echo 'EXTRA_DIST =' > gtk-doc.make
30 fi
31
32 if test -z "$NOGTKDOC"; then
33     gtkdocize || exit $?
34 fi
35 intltoolize --force --automake
36 autoreconf --force --install --symlink
37
38 libdir() {
39     echo $(cd $1/$(gcc -print-multi-os-directory); pwd)
40 }
41
42 args="\
43 --sysconfdir=/etc \
44 --localstatedir=/var \
45 --libdir=$(libdir /usr/lib) \
46 --libexecdir=/usr/lib \
47 --enable-gtk-doc"
48
49 if [ ! -L /bin ]; then
50 args="$args \
51 --with-rootprefix= \
52 --with-rootlibdir=$(libdir /lib) \
53 "
54 fi
55
56 if [ "x$1" != "xc" ]; then
57     echo
58     echo "----------------------------------------------------------------"
59     echo "Initialized build system. For a common configuration please run:"
60     echo "----------------------------------------------------------------"
61     echo
62     echo "./configure CFLAGS='-g -O0' $args"
63     echo
64 else
65     echo ./configure CFLAGS='-g -O0' $args
66     ./configure CFLAGS='-g -O0' $args
67     make clean
68 fi