#!/bin/sh
# gmm-config.  Generated from gmm-config.in by configure.

#  Copyright (C) 1999-2020 Yves Renard
#
#  This file is a part of GetFEM++
#
#  GetFEM++  is  free software;  you  can  redistribute  it  and/or modify it
#  under  the  terms  of the  GNU  Lesser General Public License as published
#  by  the  Free Software Foundation;  either version 3 of the License,  or
#  (at your option) any later version along with the GCC Runtime Library
#  Exception either version 3.1 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 Lesser General Public
#  License and GCC Runtime Library Exception for more details.
#  You  should  have received a copy of the GNU Lesser General Public License
#  along  with  this program;  if not, write to the Free Software Foundation,
#  Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA.



prefix="/usr"
exec_prefix="/usr"
includedir="/usr/include"
libdir="/usr/lib64"
bindir="/usr/bin"
datadir="/usr/share"
mandir="/usr/share/man"
sysconfdir="/etc"
sharedstatedir="/var/lib"
srcdir="/home/abuild/rpmbuild/BUILD/gmm++-5.4.4-build/gmm-5.4.4"
builddir="/home/abuild/rpmbuild/BUILD/gmm++-5.4.4-build/gmm-5.4.4"
build_CXXFLAGS="-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto -g -DGMM_USES_MUMPS -I/usr/include/mumps -ftemplate-depth-40 -pedantic -O3 -Wall -W -Wshadow -Wpointer-arith -Wcast-qual -Wwrite-strings -Wconversion -Wredundant-decls -Wno-long-long"
build_LDFLAGS=" -flto=auto"
CXX="g++"

LDFLAGS=""
STATICLDFLAGS=""
LALDFLAGS=""
SRC_LDFLAGS=""
SRC_LALDFLAGS=""
SRC_STATICLDFLAGS=""

CFLAGS=" -DGMM_HAVE_OPENMP -I$includedir"
SRC_CFLAGS="-I$srcdir/src -I$builddir/src  -DGMM_HAVE_OPENMP"

build="openSUSE-06/02/25,16:39:42"
configure_args=" '--host=x86_64-suse-linux' '--build=x86_64-suse-linux' '--program-prefix=' '--disable-dependency-tracking' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib64' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/var/lib' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--program-prefix=/usr/bin' '--enable-openmp' 'build_alias=x86_64-suse-linux' 'host_alias=x86_64-suse-linux' 'CXX=g++' 'CXXFLAGS=-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto -g -DGMM_USES_MUMPS -I/usr/include/mumps' 'LDFLAGS= -flto=auto' 'CFLAGS=-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto -g'"
from_source=0
usage()
{
	cat <<EOF
Usage: gmm-config [OPTIONS]
Options:
        [--src]
	[--prefix]
	[--exec-prefix]
	[--version]
	[--libs-la]
	[--libs]
	[--cflags]
	[--cxx]
	[--build-flags]
	[--build-libs]
	[--configure-args]
EOF
	exit $1
}

while test $# -gt 0; do
  case "$1" in
  -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  *) optarg= ;;
  esac

  case $1 in
    --src)
      from_source=1
      ;;
    --prefix)
      echo $prefix
      ;;
    --exec-prefix)
      echo $exec_prefix
      ;;
    --version)
      echo 5.4.4
      ;;
    --cflags)
      if test $from_source -eq 0; then
        echo $CFLAGS
      else
        echo $SRC_CFLAGS
      fi;
      ;;
    --libs-la)
      if test $from_source -eq 0; then
        echo $LALDFLAGS
      else
        echo $SRC_LALDFLAGS
      fi;
      ;;
    --libs)
      if test $from_source -eq 0; then
        echo $LDFLAGS
      else
        echo $SRC_LDFLAGS
      fi;
      ;;
    --static-libs)
      if test $from_source -eq 0; then
        echo $STATICLDFLAGS
      else
        echo $SRC_STATICLDFLAGS
      fi;
      ;;
    --build)
      echo $build
      ;;
    --build-flags)
      echo $build_CXXFLAGS
      ;;
    --build-libs)
      echo $build_LDFLAGS
      ;;
    --cxx)
      echo $CXX
      ;;
    --configure-args)
      echo $configure_args
      ;;
    *)
      usage 1 1>&2
      ;;
  esac
  shift
done

