chiark / gitweb /
journal: add new system-cat tool as kind of a more powerfull BSD logger
[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 General Public License as published by
7 #  the Free Software Foundation; either version 2 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 #  General Public License for more details.
14 #
15 #  You should have received a copy of the GNU 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 intltoolize --force --automake
25 autoreconf --force --install --symlink
26
27 libdir() {
28     echo $(cd $1/$(gcc -print-multi-os-directory); pwd)
29 }
30
31 args="\
32 --with-rootprefix= \
33 --sysconfdir=/etc \
34 --localstatedir=/var \
35 --libdir=$(libdir /usr/lib) \
36 --with-rootlibdir=$(libdir /lib) \
37 --libexecdir=/usr/lib"
38
39 if [ "x$1" != "xc" ]; then
40     echo
41     echo "----------------------------------------------------------------"
42     echo "Initialized build system. For a common configuration please run:"
43     echo "----------------------------------------------------------------"
44     echo
45     echo "./configure CFLAGS='-g -O0' $args"
46     echo
47 else
48     echo ./configure CFLAGS='-g -O0' $args
49     ./configure CFLAGS='-g -O0' $args
50     make clean
51 fi