Building GVD 
============

Prerequisites:
- GNAT 3.13 or higher
- GtkAda 1.2.12

To build GVD, you first need to install GNAT and GtkAda, then
do the following:
   $ ./configure --prefix=<prefix>
   $ make
   $ make install

It is possible to specify the name of the gnat compiler when it is
different from gcc (e.g. gnatgcc). The following options are provided:
   - Specify the name of the compiler at configure time
      $ CC=<your-gnat-compiler> ./configure <...>
      $ make
   - Specify the name of the compiler when invoking make
      $ ./configure <...>
      $ make CC=<your-gnat-compiler>

