Added rote_vt_get_pty_fd function
[librote.git] / rote-config.in
blobf5728af960500271bbdaf8b500146bbf10c6bcda
1 #!/bin/sh
3 prefix=@prefix@
4 exec_prefix=@exec_prefix@
5 libdir=@libdir@
6 includedir=@includedir@
7 version=@PACKAGE_VERSION@
9 if test $# -eq 0; then
10 echo "Usage: rote-config [--cflags] [--libs]"
11 echo " rote-config --version"
12 echo
15 while test $# -gt 0; do
16 case $1 in
17 --cflags)
18 echo "-I$includedir"
20 --libs)
21 echo "-L$libdir -lrote"
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"
30 esac
31 shift
32 done