2012-07-25 22:39:17 +03:00
#!/bin/sh
2010-02-03 14:21:48 +01:00
# 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/>.
2012-07-18 10:06:18 +02:00
set -e
2014-02-25 09:45:46 +01:00
oldpwd = $( pwd )
topdir = $( dirname $0 )
cd $topdir
2012-07-25 22:39:17 +03:00
if [ -f .git/hooks/pre-commit.sample ] && [ ! -f .git/hooks/pre-commit ] ; then
# This part is allowed to fail
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 && \
2012-07-25 22:39:17 +03:00
echo "Activated pre-commit hook." || :
2010-02-03 14:21:48 +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-07-25 22:39:17 +03: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) \
2015-06-03 00:09:23 +02:00
"
2012-01-09 23:14:03 +01:00
2014-11-24 15:39:00 +01:00
if [ -f " $topdir /.config.args " ] ; then
args = " $args $( cat $topdir /.config.args) "
fi
2012-02-07 03:23:05 +01:00
if [ ! -L /bin ] ; then
args = " $args \
2015-06-03 07:33:06 -07:00
--with-rootprefix= / \
2012-02-07 03:23:05 +01:00
--with-rootlibdir= $( libdir /lib) \
"
fi
2014-02-25 09:45:46 +01:00
cd $oldpwd
2012-07-25 22:39:17 +03:00
if [ " x $1 " = "xc" ] ; then
2014-02-25 09:45:46 +01:00
$topdir /configure CFLAGS = '-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus $args
2013-10-30 02:04:17 +01:00
make clean
elif [ " x $1 " = "xg" ] ; then
2014-02-25 09:45:46 +01:00
$topdir /configure CFLAGS = '-g -Og -ftrapv' --enable-compat-libs --enable-kdbus $args
2012-05-15 13:53:05 +02:00
make clean
2013-12-25 18:34:44 +01:00
elif [ " x $1 " = "xa" ] ; then
2014-02-25 09:45:46 +01:00
$topdir /configure CFLAGS = '-g -O0 -Wsuggest-attribute=pure -Wsuggest-attribute=const -ftrapv' --enable-compat-libs --enable-kdbus $args
2013-12-25 18:34:44 +01:00
make clean
2013-12-27 21:54:48 +01:00
elif [ " x $1 " = "xl" ] ; then
2014-11-15 21:32:59 +01:00
$topdir /configure CC = clang CFLAGS = '-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus $args
2013-12-27 21:54:48 +01:00
make clean
2013-12-27 21:57:12 +01:00
elif [ " x $1 " = "xs" ] ; then
2014-04-01 22:32:44 +02:00
scan-build $topdir /configure CFLAGS = '-std=gnu99 -g -O0 -ftrapv' --enable-kdbus $args
2013-12-27 21:57:12 +01:00
scan-build make
2012-05-15 13:53:05 +02:00
else
echo
echo "----------------------------------------------------------------"
echo "Initialized build system. For a common configuration please run:"
echo "----------------------------------------------------------------"
echo
2014-02-25 09:45:46 +01:00
echo " $topdir /configure CFLAGS='-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus $args "
2012-05-15 13:53:05 +02:00
echo
2010-02-03 14:21:48 +01:00
fi