1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
#!/bin/sh
#
# JB, the Jean-Yves Lefort's Build System
# Copyright (C) 2008 Jean-Yves Lefort <jylefort@brutele.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
maintainer_cflags="-g -fstrict-aliasing -Wall -Werror \
-Wformat-y2k \
-Wformat-security \
-Wno-format-zero-length \
-Wno-unused-parameter \
-Wfloat-equal \
-Wdeclaration-after-statement \
-Wendif-labels \
-Wpointer-arith \
-Wcast-align \
-Waggregate-return \
-Wmissing-noreturn \
-Wmissing-format-attribute \
-Wpacked \
-Wredundant-decls \
-Wnested-externs \
-Winline \
-Wno-pointer-sign \
-Wshadow"
if test -z $jb_cc; then
jb_cc=cc
fi
if test -n $enable_maintainer_mode; then
jb_cflags="$jb_cflags $maintainer_cflags"
fi
if test -f jbsrc/jb.c; then
build=false
jb_c_sources=
for f in jb-action.c jb-compile-options.c jb-config.c jb-feature.c jb-group.c jb-install-options.c jb-main.c jb-resource.c jb-tests.c jb-util.c jb-variable.c; do
jb_c_sources="$jb_c_sources jbsrc/lib/src/core/$f"
done
jb_h_sources=
for f in jb-action.h jb-compile-options.h jb-config.h jb-decls.h jb-feature.h jb-group.h jb-install-options.h jb-main.h jb-resource.h jb-tests.h jb.h jb-util.h jb-variable.h; do
jb_h_sources="$jb_h_sources jbsrc/lib/src/core/$f"
done
jb_c_package_sources=
jb_h_package_sources=
# core includes
for f in `grep "^#jb_include <.*>" jbsrc/jb.c | sed -e 's|^#jb_include <\(.*\)>|\1|'`; do
jb_c_package_sources="$jb_c_package_sources jbsrc/lib/src/extras/$f.c"
jb_h_package_sources="$jb_h_package_sources jbsrc/lib/src/extras/$f.h"
done
# package includes
for f in `grep "^#jb_include \".*\"" jbsrc/jb.c | sed -e 's|^#jb_include "\(.*\)"|\1|'`; do
jb_c_package_sources="$jb_c_package_sources jbsrc/$f.c"
jb_h_package_sources="$jb_h_package_sources jbsrc/$f.h"
done
if test -f build/jbsrc/jb; then
for f in jbsrc/jb.c $jb_c_sources $jb_h_sources $jb_c_package_sources $jb_h_package_sources; do
if test $f -nt build/jbsrc/jb; then
build=true
break
fi
done
else
build=true
fi
if test $build = true; then
echo "building jb..."
mkdir -p build/jbsrc || exit 1
if ! gobject_cflags=`pkg-config --cflags 'gobject-2.0 >= 2.8.0' 2>/dev/null`; then
echo "ERROR: the GLib library was not found" >&2
exit 1
fi
gobject_libs=`pkg-config --libs 'gobject-2.0 >= 2.8.0'`
if ! libedataserver_cflags=`pkg-config --cflags 'libedataserver-1.2' 2>/dev/null`; then
echo "ERROR: the Evolution Data Server Utility library was not found" >&2
exit 1
fi
sed -e 's|^#jb_include ["<]\(.*\)[">]|#include "\1.h"|' \
jbsrc/jb.c > build/jbsrc/jb.c || exit 1
if ! $jb_cc \
-o build/jbsrc/jb \
-Ijbsrc/lib/src/core -Ijbsrc/lib/src/extras -Ijbsrc \
-DG_LOG_DOMAIN="\"jb\"" \
-DJB_SOURCES="\"$jb_c_sources $jb_h_sources\"" \
-DJB_PACKAGE_SOURCES="\"$jb_c_package_sources $jb_h_package_sources\"" \
$gobject_cflags \
$libedataserver_cflags \
$jb_cflags \
$jb_cppflags \
$jb_ldflags \
build/jbsrc/jb.c \
$jb_c_sources \
$jb_c_package_sources \
$jb_libs \
$gobject_libs; then
echo "ERROR: cannot build jb" >&2
exit 1
fi
fi
exec build/jbsrc/jb "$@"
else
echo "ERROR: jb must be run from the toplevel directory" >&2
exit 1
fi
|