OSDN Git Service

PR bootstrap/11932
[pf3gnuchains/gcc-fork.git] / gcc / ada / prj-makr.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             P R J . M A K R                              --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --             Copyright (C) 2001-2003 Free Software Foundation, Inc.       --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 --  Support for procedure Gnatname.
28
29 --  For arbitrary naming schemes, create or update a project file,
30 --  or create a configuration pragmas file.
31
32 with GNAT.OS_Lib; use GNAT.OS_Lib;
33
34 package Prj.Makr is
35
36    procedure Make
37      (File_Path         : String;
38       Project_File      : Boolean;
39       Directories       : Argument_List;
40       Name_Patterns     : Argument_List;
41       Excluded_Patterns : Argument_List;
42       Foreign_Patterns  : Argument_List;
43       Preproc_Switches  : Argument_List;
44       Very_Verbose      : Boolean);
45    --  Create a project file or a configuration pragmas file
46    --
47    --  Project_File is the path name of the project file. If the project
48    --  file already exists parse it and keep all the elements that are not
49    --  automatically generated.
50    --
51    --  Directory_List_File is the path name of a text file that
52    --  contains on each non empty line the path names of the source
53    --  directories for the project file. The source directories
54    --  are relative to the directory of the project file.
55    --
56    --  File_Name_Patterns is a GNAT.Regexp string pattern such as
57    --  ".*\.ads|.*\.adb" or any other pattern.
58    --
59    --  A project file (without any sources) is automatically generated
60    --  with the name <project>_naming. It contains a package Naming with
61    --  all the specs and bodies for the project.
62    --  A file containing the source file names is automatically
63    --  generated and used as the Source_File_List for the project file.
64    --  It includes all sources that follow the Foreign_Patterns (except those
65    --  that follow Excluded_Patterns).
66
67    --  Preproc_switches is a list of optional preprocessor switches -gnatep=
68    --  and -gnateD that are used when invoking the compiler to find the
69    --  unit name and kind.
70
71 end Prj.Makr;