2010-02-03 14:21:48 +01:00
#!/bin/bash
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
2012-04-12 00:20:58 +02:00
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
2010-02-03 14:21:48 +01:00
# (at your option) any later version.
#
# systemd is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2012-04-12 00:20:58 +02:00
# Lesser General Public License for more details.
2010-02-03 14:21:48 +01:00
#
2012-04-12 00:20:58 +02:00
# You should have received a copy of the GNU Lesser General Public License
2010-02-03 14:21:48 +01:00
# along with systemd; If not, see <http://www.gnu.org/licenses/>.
if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
2012-05-15 13:53:05 +02:00
cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \
chmod +x .git/hooks/pre-commit && \
echo "Activated pre-commit hook."
2010-02-03 14:21:48 +01:00
fi
2012-04-17 17:03:38 +02:00
GTKDOCIZE = $( which gtkdocize 2>/dev/null)
2012-04-17 15:17:27 +01:00
if test -z $GTKDOCIZE ; then
2012-05-15 13:53:05 +02:00
echo "You don't have gtk-doc installed, and thus won't be able to generate the documentation."
2012-05-15 13:55:48 +02:00
echo 'EXTRA_DIST =' > docs/gtk-doc.make
2012-04-17 17:03:38 +02:00
else
2012-05-15 13:53:05 +02:00
gtkdocize --docdir docs/
gtkdocargs = --enable-gtk-doc
2012-04-17 15:17:27 +01:00
fi
2012-01-09 23:14:03 +01:00
intltoolize --force --automake
autoreconf --force --install --symlink
2011-07-15 01:31:06 +02:00
libdir( ) {
2012-05-15 13:53:05 +02:00
echo $( cd $1 /$( gcc -print-multi-os-directory) ; pwd )
2011-07-15 01:31:06 +02:00
}
2012-01-09 23:14:03 +01:00
args = " \
--sysconfdir= /etc \
--localstatedir= /var \
--libdir= $( libdir /usr/lib) \
2012-04-17 17:03:38 +02:00
$gtkdocargs "
2012-01-09 23:14:03 +01:00
2012-02-07 03:23:05 +01:00
if [ ! -L /bin ] ; then
args = " $args \
--with-rootprefix= \
--with-rootlibdir= $( libdir /lib) \
"
fi
2012-05-08 02:51:26 +02:00
if [ " x $1 " = = "xc" ] ; then
2012-05-15 13:53:05 +02:00
./configure CFLAGS = '-g -O0 -Wp,-U_FORTIFY_SOURCE' $args
make clean
else
echo
echo "----------------------------------------------------------------"
echo "Initialized build system. For a common configuration please run:"
echo "----------------------------------------------------------------"
echo
echo " ./configure CFLAGS='-g -O0 -Wp,-U_FORTIFY_SOURCE' $args "
echo
2010-02-03 14:21:48 +01:00
fi