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
2016-10-19 22:49:22 -04:00
verb = " $1 "
2016-10-26 02:39:48 +03:00
case " $verb " in
"" ) ; ;
[ cgals] ) shift ; ;
*) echo " Unexpected argument: $verb " >& 2; exit 1 ; ;
esac
2016-10-19 22:49:22 -04:00
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
2016-10-19 22:49:22 -04:00
args = " $args $@ "
2014-02-25 09:45:46 +01:00
cd $oldpwd
2016-10-19 22:49:22 -04:00
if [ " $verb " = "c" ] ; then
2016-10-19 22:57:02 -04:00
set -x
2016-06-10 09:50:16 -04:00
$topdir /configure CFLAGS = '-g -O0 -ftrapv' $args
2016-10-19 22:57:02 -04:00
make clean >/dev/null
2016-10-19 22:49:22 -04:00
elif [ " $verb " = "g" ] ; then
2016-10-19 22:57:02 -04:00
set -x
2016-06-10 09:50:16 -04:00
$topdir /configure CFLAGS = '-g -Og -ftrapv' $args
2016-10-19 22:57:02 -04:00
make clean >/dev/null
2016-10-19 22:49:22 -04:00
elif [ " $verb " = "a" ] ; then
2016-10-19 22:57:02 -04:00
set -x
2016-06-10 09:50:16 -04:00
$topdir /configure CFLAGS = '-g -O0 -Wsuggest-attribute=pure -Wsuggest-attribute=const -ftrapv' $args
2016-10-19 22:57:02 -04:00
make clean >/dev/null
2016-10-19 22:49:22 -04:00
elif [ " $verb " = "l" ] ; then
2016-10-19 22:57:02 -04:00
set -x
2016-06-10 09:50:16 -04:00
$topdir /configure CC = clang CFLAGS = '-g -O0 -ftrapv' $args
2016-10-19 22:57:02 -04:00
make clean >/dev/null
2016-10-19 22:49:22 -04:00
elif [ " $verb " = "s" ] ; then
2016-10-19 22:57:02 -04:00
set -x
2016-06-10 09:50:16 -04:00
scan-build $topdir /configure CFLAGS = '-std=gnu99 -g -O0 -ftrapv' $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
2016-06-10 09:50:16 -04:00
echo " $topdir /configure CFLAGS='-g -O0 -ftrapv' $args "
2012-05-15 13:53:05 +02:00
echo
2010-02-03 14:21:48 +01:00
fi