view srf2fastq/io_lib-1.12.2/io_lib-config.in @ 0:d901c9f41a6a default tip

Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
author dawe
date Tue, 07 Jun 2011 17:48:05 -0400
parents
children
line wrap: on
line source

#!/bin/sh
#
# This program prints up a few io_lib configuration parameters. It is
# designed to be used in other build environments so that programs
# using io_lib can automatically generate the appropriate CFLAGS and LDFLAGS.

usage() {
    cat << _EOF_
Usage: io_lib-config [option]

where 'option' is any one of:

  --cflags      C and preprocessor flags (eg -I/foo/include)
  --libs        Link-line parameters, eg -L/foo/lib -lstaden-read
  --version	List io_lib version number

_EOF_

    exit $1
}

[ $# -eq 0 ] && usage 1

prefix=@prefix@
exec_prefix=@exec_prefix@
includedir=@includedir@

case "$1" in
--cflags)
    echo "-I@includedir@"
    ;;
--libs)
    echo "-L@libdir@ -lstaden-read @LDFLAGS@ @LIBS@ @LIBCURL@ @LIBZ@"
    ;;
--version)
    echo @VERSION@
    ;;
--help)
    usage 0
    ;;
*)
    echo "Unknown option '$1'" 1>&2
    exit 1
esac