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-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) \
2015-06-03 01:09:23 +03:00
"
2012-01-10 02:14:03 +04:00
2014-11-24 17:39:00 +03:00
if [ -f " $topdir /.config.args " ] ; then
args = " $args $( cat $topdir /.config.args) "
fi
2012-02-07 06:23:05 +04:00
if [ ! -L /bin ] ; then
args = " $args \
2015-06-03 17:33:06 +03:00
--with-rootprefix= / \
2012-02-07 06:23:05 +04:00
--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
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-11-15 23:32:59 +03:00
$topdir /configure CC = clang CFLAGS = '-g -O0 -ftrapv' --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