# coverage
# profiling
#
-# Also you can specify "cln" or "gmp". If "gmp", the build dir
-# contains the string "gmp". (cln is considered the default.)
+# Also you can specify "cln" or "gmp". If "cln", the build dir
+# contains the string "cln". (gmp is considered the default.)
#
if [ $# -eq 0 ]; then
while [ $# -gt 0 ]; do
case "$1" in
- cln) ;;
- gmp) gmp=1 ;;
+ cln) cln=1 ;;
+ gmp) ;;
no*) eval `expr "$1" : 'no\(.*\)'`=0 ;;
*) eval $1=1 ;;
esac
done
build_type_suffix=
-for arg in gmp staticbinary optimized debugsymbols statistics assertions tracing muzzle coverage profiling; do
+for arg in cln staticbinary optimized debugsymbols statistics assertions tracing muzzle coverage profiling; do
if eval [ -n '"${'$arg'+set}"' ]; then
if eval [ '"${'$arg'}"' -eq 0 ]; then
build_type_suffix=$build_type_suffix-no$arg