build: Make mescc more verbose on V=2, V=3.
* build-aux/cflags.sh (AM_CFLAGS): Add -v, -v -v for V=2, V=3 respectively.
This commit is contained in:
parent
e488ba3daf
commit
7198c2d7ea
|
@ -1,5 +1,5 @@
|
||||||
# GNU Mes --- Maxwell Equations of Software
|
# GNU Mes --- Maxwell Equations of Software
|
||||||
# Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
# Copyright © 2018,2019,2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
#
|
#
|
||||||
# This file is part of GNU Mes.
|
# This file is part of GNU Mes.
|
||||||
#
|
#
|
||||||
|
@ -29,6 +29,11 @@ if test $mes_kernel = gnu; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AM_CFLAGS=
|
AM_CFLAGS=
|
||||||
|
if test "$V" = 2; then
|
||||||
|
AM_CFLAGS="$AM_CFLAGS -v"
|
||||||
|
elif test "$V" = 3; then
|
||||||
|
AM_CFLAGS="$AM_CFLAGS -v -v"
|
||||||
|
fi
|
||||||
|
|
||||||
if test $mes_libc = mes; then
|
if test $mes_libc = mes; then
|
||||||
AM_CFLAGS="$AM_CFLAGS
|
AM_CFLAGS="$AM_CFLAGS
|
||||||
|
|
Loading…
Reference in a new issue