2012-07-25 23:39:17 +04:00
#!/bin/sh
2010-02-03 16:21:48 +03:00
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
2012-04-12 02:20:58 +04: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 16:21:48 +03: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 02:20:58 +04:00
# Lesser General Public License for more details.
2010-02-03 16:21:48 +03:00
#
2012-04-12 02:20:58 +04:00
# You should have received a copy of the GNU Lesser General Public License
2010-02-03 16:21:48 +03:00
# along with systemd; If not, see <http://www.gnu.org/licenses/>.
2012-07-18 12:06:18 +04:00
set -e
2014-02-25 12:45:46 +04:00
oldpwd = $( pwd )
topdir = $( dirname $0 )
cd $topdir
2012-07-25 23:39:17 +04:00
if [ -f .git/hooks/pre-commit.sample ] && [ ! -f .git/hooks/pre-commit ] ; then
# This part is allowed to fail
2012-05-15 15:53:05 +04:00
cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \
chmod +x .git/hooks/pre-commit && \
2012-07-25 23:39:17 +04:00
echo "Activated pre-commit hook." || :
2010-02-03 16:21:48 +03:00
fi
2012-07-25 23:39:17 +04:00
if which gtkdocize >/dev/null 2>/dev/null; then
2013-08-20 03:24:01 +04:00
gtkdocize --docdir docs/ --flavour no-tmpl
2012-05-15 15:53:05 +04:00
gtkdocargs = --enable-gtk-doc
2012-07-25 23:39:17 +04:00
else
echo "You don't have gtk-doc installed, and thus won't be able to generate the documentation."
rm -f docs/gtk-doc.make
echo 'EXTRA_DIST =' > docs/gtk-doc.make
2012-04-17 18:17:27 +04:00
fi
2012-01-10 02:14:03 +04:00
intltoolize --force --automake
autoreconf --force --install --symlink
2011-07-15 03:31:06 +04:00
libdir( ) {
2012-07-25 23:39:17 +04:00
echo $( cd " $1 / $( gcc -print-multi-os-directory) " ; pwd )
2011-07-15 03:31:06 +04:00
}
2012-01-10 02:14:03 +04:00
args = " \
--sysconfdir= /etc \
--localstatedir= /var \
--libdir= $( libdir /usr/lib) \
2012-04-17 19:03:38 +04:00
$gtkdocargs "
2012-01-10 02:14:03 +04:00
2012-02-07 06:23:05 +04:00
if [ ! -L /bin ] ; then
args = " $args \
--with-rootprefix= \
--with-rootlibdir= $( libdir /lib) \
"
fi
2014-02-25 12:45:46 +04:00
cd $oldpwd
2012-07-25 23:39:17 +04:00
if [ " x $1 " = "xc" ] ; then
2014-02-25 12:45:46 +04:00
$topdir /configure CFLAGS = '-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus $args
2013-10-30 05:04:17 +04:00
make clean
2014-07-18 15:00:30 +04:00
elif [ " x $1 " = "xt" ] ; then
$topdir /configure CFLAGS = '-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus --enable-terminal $args
make clean
2013-10-30 05:04:17 +04:00
elif [ " x $1 " = "xg" ] ; then
2014-02-25 12:45:46 +04:00
$topdir /configure CFLAGS = '-g -Og -ftrapv' --enable-compat-libs --enable-kdbus $args
2012-05-15 15:53:05 +04:00
make clean
2013-12-25 21:34:44 +04:00
elif [ " x $1 " = "xa" ] ; then
2014-02-25 12:45:46 +04:00
$topdir /configure CFLAGS = '-g -O0 -Wsuggest-attribute=pure -Wsuggest-attribute=const -ftrapv' --enable-compat-libs --enable-kdbus $args
2013-12-25 21:34:44 +04:00
make clean
2013-12-28 00:54:48 +04:00
elif [ " x $1 " = "xl" ] ; then
2014-02-25 12:45:46 +04:00
$topdir /configure CC = clang CFLAGS = '-g -O0 -ftrapv -Wno-gnu' --enable-compat-libs --enable-kdbus $args
2013-12-28 00:54:48 +04:00
make clean
2013-12-28 00:57:12 +04:00
elif [ " x $1 " = "xs" ] ; then
2014-04-02 00:32:44 +04:00
scan-build $topdir /configure CFLAGS = '-std=gnu99 -g -O0 -ftrapv' --enable-kdbus $args
2013-12-28 00:57:12 +04:00
scan-build make
2012-05-15 15:53:05 +04:00
else
echo
echo "----------------------------------------------------------------"
echo "Initialized build system. For a common configuration please run:"
echo "----------------------------------------------------------------"
echo
2014-02-25 12:45:46 +04:00
echo " $topdir /configure CFLAGS='-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus $args "
2012-05-15 15:53:05 +04:00
echo
2010-02-03 16:21:48 +03:00
fi