Initial revision
[apps/madtty.git] / rote-config.in
1 #!/bin/sh
2
3 prefix=@prefix@
4 exec_prefix=@exec_prefix@
5 libdir=@libdir@
6 includedir=@includedir@
7 version=@PACKAGE_VERSION@
8
9 if test $# -eq 0; then
10    echo "Usage: rote-config [--cflags] [--libs]"
11    echo "       rote-config --version"
12    echo
13 fi
14
15 while test $# -gt 0; do
16    case $1 in
17       --cflags)
18          echo "-I$includedir"
19          ;;
20       --libs)
21          echo "-L$libdir -lrote"
22          ;;
23       --version)
24          echo "ROTE version $version"
25          echo "Our Own Terminal Emulation Library"
26          echo
27          echo "Copyright (c) 2004 Bruno T. C. de Oliveira"
28          echo "All rights reserved"
29          ;;
30    esac
31    shift
32 done
33