2018-07-22 12:24:36 +00:00
|
|
|
# GNU Mes --- Maxwell Equations of Software
|
2019-06-08 13:36:22 +00:00
|
|
|
# Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2018-04-29 16:38:57 +00:00
|
|
|
#
|
2018-07-22 12:24:36 +00:00
|
|
|
# This file is part of GNU Mes.
|
2018-04-29 16:38:57 +00:00
|
|
|
#
|
2018-07-22 12:24:36 +00:00
|
|
|
# GNU Mes is free software; you can redistribute it and/or modify it
|
2018-04-29 16:38:57 +00:00
|
|
|
# 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.
|
|
|
|
#
|
2018-07-22 12:24:36 +00:00
|
|
|
# GNU Mes is distributed in the hope that it will be useful, but
|
2018-04-29 16:38:57 +00:00
|
|
|
# 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
|
2018-07-22 12:24:36 +00:00
|
|
|
# along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2018-04-29 16:38:57 +00:00
|
|
|
|
2019-06-08 13:36:22 +00:00
|
|
|
objects=
|
2018-11-06 19:29:35 +00:00
|
|
|
compile () {
|
2019-06-08 13:36:22 +00:00
|
|
|
c=${srcdest}$1
|
|
|
|
b=$(basename $c .c)
|
|
|
|
o=$b.o
|
|
|
|
objects="$objects $o"
|
2019-12-11 13:04:27 +00:00
|
|
|
if test ! -e $o -o $c -nt $o; then
|
2019-12-02 17:26:08 +00:00
|
|
|
trace "CC $c" $CC -c $AM_CPPFLAGS $CPPFLAGS $AM_CFLAGS $CFLAGS -o $o $c
|
|
|
|
$CC -c $AM_CPPFLAGS $CPPFLAGS $AM_CFLAGS $CFLAGS -o $o $c
|
2019-06-08 13:36:22 +00:00
|
|
|
fi
|
2018-11-06 19:29:35 +00:00
|
|
|
}
|
2018-05-29 18:07:46 +00:00
|
|
|
|
2018-11-06 19:29:35 +00:00
|
|
|
archive () {
|
2019-06-08 13:36:22 +00:00
|
|
|
archive=$1
|
2018-11-06 19:29:35 +00:00
|
|
|
shift
|
2019-06-08 13:36:22 +00:00
|
|
|
sources="$@"
|
|
|
|
objects=
|
|
|
|
for c in $sources; do
|
|
|
|
b=$(basename $c .c)
|
|
|
|
o=$b.o
|
|
|
|
compile $c
|
|
|
|
done
|
|
|
|
trace "AR $archive" $AR crD $archive $objects
|
|
|
|
objects=
|
|
|
|
}
|
|
|
|
|
|
|
|
link () {
|
|
|
|
out=$1
|
2018-11-06 19:29:35 +00:00
|
|
|
d=$(dirname $out)
|
|
|
|
mkdir -p $d
|
2019-06-08 13:36:22 +00:00
|
|
|
if test $mes_libc = system; then
|
|
|
|
crt1=
|
2018-11-06 19:29:35 +00:00
|
|
|
else
|
2019-06-08 13:36:22 +00:00
|
|
|
crt1=crt1.o
|
2018-11-06 19:29:35 +00:00
|
|
|
fi
|
2019-12-02 17:26:08 +00:00
|
|
|
trace "CCLD $out" $CC $AM_CFLAGS $CFLAGS $AM_LDFLAGS $LDFLAGS -o $out $crt1 $objects $LIBS
|
2019-06-08 13:36:22 +00:00
|
|
|
objects=
|
2018-11-06 19:29:35 +00:00
|
|
|
}
|