]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/gen/adacurses-config.in
ncurses 6.2 - patch 20210703
[ncurses.git] / Ada95 / gen / adacurses-config.in
1 #! /bin/sh
2 # $Id: adacurses-config.in,v 1.14 2020/02/02 23:34:34 tom Exp $
3 ##############################################################################
4 # Copyright 2019,2020 Thomas E. Dickey                                       #
5 # Copyright 2007-2014,2016 Free Software Foundation, Inc.                    #
6 #                                                                            #
7 # Permission is hereby granted, free of charge, to any person obtaining a    #
8 # copy of this software and associated documentation files (the "Software"), #
9 # to deal in the Software without restriction, including without limitation  #
10 # the rights to use, copy, modify, merge, publish, distribute, distribute    #
11 # with modifications, sublicense, and/or sell copies of the Software, and to #
12 # permit persons to whom the Software is furnished to do so, subject to the  #
13 # following conditions:                                                      #
14 #                                                                            #
15 # The above copyright notice and this permission notice shall be included in #
16 # all copies or substantial portions of the Software.                        #
17 #                                                                            #
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
19 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
20 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
21 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
22 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
23 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
24 # DEALINGS IN THE SOFTWARE.                                                  #
25 #                                                                            #
26 # Except as contained in this notice, the name(s) of the above copyright     #
27 # holders shall not be used in advertising or otherwise to promote the sale, #
28 # use or other dealings in this Software without prior written               #
29 # authorization.                                                             #
30 ##############################################################################
31 #
32 # This script returns the options to add to `gnatmake' for using AdaCurses.
33
34 DESTDIR=@DESTDIR@
35 prefix=@prefix@
36 exec_prefix=@exec_prefix@
37 libdir=@libdir@
38
39 ADA_INCLUDE=@ADA_INCLUDE@
40 ADA_OBJECTS=@ADA_OBJECTS@
41
42 VERSION=@NCURSES_MAJOR@.@NCURSES_MINOR@.@NCURSES_PATCH@
43
44 CFLAGS="-aI$ADA_INCLUDE -aO$ADA_OBJECTS"
45 LIBS="-L$ADA_OBJECTS -l@ADA_LIBNAME@"
46
47 THIS="@ADA_LIBNAME@"
48 THIS_CFG="$THIS@DFT_ARG_SUFFIX@-config"
49
50 case "x$1" in
51         x--version)
52                 echo @ADA_LIBNAME@ $VERSION
53                 ;;
54         x--cflags)
55                 echo $CFLAGS
56                 ;;
57         x--libs)
58                 echo $LIBS
59                 ;;
60         x)
61                 # if no parameter is given, give what gnatmake needs
62                 echo "$CFLAGS -largs $LIBS"
63                 ;;
64         x--help)
65                 cat <<ENDHELP
66 Usage: ${THIS_CFG} [options]
67
68 Options:
69   --cflags           echos the gnat (Ada compiler) flags needed to compile with ${THIS}
70   --libs             echos the gnat libraries needed to link with ${THIS}
71
72   --version          echos the release+patchdate version of ${THIS}
73
74   --help             prints this message
75
76 If no options are given, echos the full set of flags needed by gnatmake.
77 ENDHELP
78                 ;;
79         *)
80                 echo 'Usage: $THIS_CFG [--version | --cflags | --libs]' >&2
81                 exit 1
82                 ;;
83 esac