lasso/lasso-src-config.in

94 lines
1.9 KiB
Bash

#!/bin/sh
#
# $Id$
#
# Copyright (C) 2002-2004 David Beckett - http://purl.org/net/dajobe/
# Institute for Learning and Research Technology - http://www.ilrt.bris.ac.uk/
# University of Bristol - http://www.bristol.ac.uk/
#
# This package is Free Software or Open Source available under the
# following licenses (these are alternatives):
# 1. GNU Lesser General Public License (LGPL)
# 2. GNU General Public License (GPL)
# 3. Mozilla Public License (MPL)
#
# See LICENSE.html or LICENSE.txt at the top of this package for the
# full license terms.
#
#
#
usage()
{
cat<<EOF
Usage: lasso-src-config [OPTION]
known values for OPTION are:
--libs print library linking information
--cflags print pre-processor and compiler flags
--help display this help and exit
--version output version information
--run COMMAND run the COMMAND with the shared libraries for
the source tree
EOF
exit $1
}
if test $# -eq 0; then
usage 1 1>&2
fi
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case $1 in
--version)
echo @VERSION@
exit 0
;;
--cflags)
echo_cflags=yes
;;
--libs)
echo_libs=yes
;;
--usage)
usage 0 1>&2
;;
--run)
lpath=@abs_top_builddir@/lasso/.libs
if test -d .libs; then
lpath=".libs:$lpath"
fi
if test `uname` = Darwin; then
DYLD_LIBRARY_PATH=$lpath:$DYLD_LIBRARY_PATH
export DYLD_LIBRARY_PATH
else
LD_LIBRARY_PATH=$lpath:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH
fi
shift
exec ${1+"$@"}
;;
*)
usage 1 1>&2
;;
esac
shift
done
if test "$echo_cflags" = "yes"; then
echo -I@abs_top_srcdir@/lasso
fi
if test "$echo_libs" = "yes"; then
echo -L@abs_top_builddir@/lasso/.libs @LASSO_CORE_LIBS@ @LASSO_LIBS@
fi