• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

config/H11-May-2016-6152

docs/H03-May-2022-2,9251,880

regtests/H11-May-2016-22,90119,732

src/H11-May-2016-13,5068,514

tools/H11-May-2016-1,225911

xsrc/H11-May-2016-1,221713

.gitignoreH A D11-May-2016280 1716

.gitreviewH A D11-May-201697 65

COPYING.RUNTIMEH A D11-May-20163.2 KiB7356

COPYING3H A D11-May-201634.3 KiB675553

MakefileH A D11-May-20165.5 KiB200138

READMEH A D11-May-20161.1 KiB5132

templates_parser.gprH A D11-May-20163.2 KiB8063

tp_shared.gprH A D11-May-20163.3 KiB10478

README

1
2Templates_Parser
3----------------
4
5Some make variables can be adjusted to change the default setup:
6
7   DEFAULT_LIBRARY_TYPE=[static|relocatable]
8        (default is static)
9
10   prefix=<install directory>
11        (default to compiler root directory)
12
13   ENABLE_STATIC=[true|false]
14        (default true)
15
16   ENABLE_SHARED=[true|false]
17        (default yes on platforms supporting shared libraries)
18
19   DEBUG=[true|false]
20        (default false)
21
22   PROCESSORS=N
23        Number of parallel compilations
24        (default 2)
25
26To build both the static and shared version (if supported) using the
27default setup:
28
29   $ make
30
31To setup the default library as relocatable and change the installation
32directory:
33
34   $ make DEFAULT_LIBRARY_TYPE=relocatable prefix=/opt/templates_parser setup
35   $ make
36
37To install:
38
39   $ make install
40
41Note that the installation will be done into your current GNAT root
42directory by default. It is possible to change this default by setting the
43prefix make variable, for example:
44
45   $ make prefix=/opt/templates_parser install
46
47or using the setup step:
48
49   $ make prefix=/opt/templates_parser setup
50   $ make && make install
51