|
# $Id$
|
|
# Author of this file: Martin Preuss<martin@libchipcard.de>
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
includedir=@includedir@
|
|
bindir=@bindir@
|
|
|
|
libdir=@libdir@
|
|
|
|
result=""
|
|
|
|
for d in $*; do
|
|
case $d in
|
|
--includes)
|
|
result="$result -I@gwenhywfar_headerdir@"
|
|
;;
|
|
--libraries)
|
|
result="$result @gwenhywfar_ldflags@ @gwenhywfar_libs@"
|
|
;;
|
|
--bindir)
|
|
result="$result @gwenhywfar_bindir@"
|
|
;;
|
|
--headers)
|
|
result="$result @gwenhywfar_headerdir@/gwenhywfar"
|
|
;;
|
|
--plugins)
|
|
result="$result @gwenhywfar_plugindir@"
|
|
;;
|
|
--vmajor)
|
|
result="$result @GWENHYWFAR_VERSION_MAJOR@"
|
|
;;
|
|
--vminor)
|
|
result="$result @GWENHYWFAR_VERSION_MINOR@"
|
|
;;
|
|
--vpatchlevel)
|
|
result="$result @GWENHYWFAR_VERSION_PATCHLEVEL@"
|
|
;;
|
|
--vbuild)
|
|
result="$result @GWENHYWFAR_VERSION_BUILD@"
|
|
;;
|
|
--vtag)
|
|
result="$result @GWENHYWFAR_VERSION_TAG@"
|
|
;;
|
|
--vstring)
|
|
result="$result @GWENHYWFAR_VERSION_MAJOR@.@GWENHYWFAR_VERSION_MINOR@.@GWENHYWFAR_VERSION_PATCHLEVEL@"
|
|
;;
|
|
--has-crypt)
|
|
# Keep this argument in order not to completely break
|
|
# the old gwenhywfar.m4 macro.
|
|
result="This argument is obsolete. See $0 --help for current arguments."
|
|
;;
|
|
--has-ui)
|
|
# Keep this argument in order not to completely break
|
|
# the old gwenhywfar.m4 macro.
|
|
result="This argument is obsolete. See $0 --help for current arguments."
|
|
;;
|
|
--libraries++)
|
|
# Keep this argument in order not to completely break
|
|
# the old gwenhywfar.m4 macro.
|
|
result="This argument is obsolete. See $0 --help for current arguments."
|
|
;;
|
|
--libraries-ui)
|
|
# Keep this argument in order not to completely break
|
|
# the old gwenhywfar.m4 macro.
|
|
result="This argument is obsolete. See $0 --help for current arguments."
|
|
;;
|
|
*)
|
|
echo "Usage:"
|
|
echo "$0 --includes gives you the include flags"
|
|
echo "$0 --libraries gives you the library flags"
|
|
echo "$0 --bindir returns the folder for binary tools"
|
|
echo "$0 --headers gives you the location of the header files"
|
|
echo "$0 --vmajor gives the major version of LibGwenhywfar"
|
|
echo "$0 --vminor gives the minor version of LibGwenhywfar"
|
|
echo "$0 --vpatchlevel gives the patchlevel of LibGwenhywfar"
|
|
echo "$0 --vbuild gives the build number of LibGwenhywfar"
|
|
echo "$0 --vtag gives the tag of LibGwenhywfar (cvs, beta or stable)"
|
|
echo "$0 --vstring returns a version string"
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
echo $result
|