Nicolas Boulenguez e68fb7ab05 Clarify variables flow.
Prevent build-doc to compile the library again into .build/obj,
because without -subdir .build/obj/TARGET/MODE/static is not seen.

No need to recompute SDIR in regtests/Makefile, it is set in makefile.setup.

Remove duplicate PRJ_BUILD in ALL_OPTIONS.

Avoid undefined VERSION in templates_parser.gpr when building examples.
2016-05-05 23:11:40 +02:00
2015-03-22 15:39:03 +01:00
2016-05-05 23:11:40 +02:00
2016-05-05 23:11:40 +02:00
2016-02-01 18:50:09 +01:00
2012-01-07 16:40:40 +01:00
2012-01-07 16:40:40 +01:00
2016-05-05 23:11:40 +02:00

Templates_Parser
----------------

Some make variables can be adjusted to change the default setup:

   DEFAULT_LIBRARY_TYPE=[static|relocatable]
        (default is static)

   prefix=<install directory>
        (default to compiler root directory)

   ENABLE_STATIC=[true|false]
        (default true)

   ENABLE_SHARED=[true|false]
        (default yes on platforms supporting shared libraries)

   DEBUG=[true|false]
        (default false)

   PROCESSORS=N
        Number of parallel compilations
        (default 2)

To build both the static and shared version (if supported) using the
default setup:

   $ make

To setup the default library as relocatable and change the installation
directory:

   $ make DEFAULT_LIBRARY_TYPE=relocatable prefix=/opt/templates_parser setup
   $ make

To install:

   $ make install

Note that the installation will be done into your current GNAT root
directory by default. It is possible to change this default by setting the
prefix make variable, for example:

   $ make prefix=/opt/templates_parser install

or using the setup step:

   $ make prefix=/opt/templates_parser setup
   $ make && make install
Description
No description provided
Readme 1.7 MiB
Languages
Ada 95.1%
Python 3.1%
Makefile 1.1%
Vim Script 0.7%