OSDN Git Service

* Makefile.in (reload1.o-warn): Remove.
[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-2005, 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,  51  Franklin  Street,  Fifth  Floor, --
20 -- Boston, MA 02110-1301, 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 package Prj.Makr is
33
34    procedure Make
35      (File_Path         : String;
36       Project_File      : Boolean;
37       Directories       : Argument_List;
38       Name_Patterns     : Argument_List;
39       Excluded_Patterns : Argument_List;
40       Foreign_Patterns  : Argument_List;
41       Preproc_Switches  : Argument_List;
42       Very_Verbose      : Boolean);
43    --  Create a project file or a configuration pragmas file
44    --
45    --  Project_File is the path name of the project file. If the project
46    --  file already exists parse it and keep all the elements that are not
47    --  automatically generated.
48    --
49    --  Directory_List_File is the path name of a text file that
50    --  contains on each non empty line the path names of the source
51    --  directories for the project file. The source directories
52    --  are relative to the directory of the project file.
53    --
54    --  File_Name_Patterns is a GNAT.Regexp string pattern such as
55    --  ".*\.ads|.*\.adb" or any other pattern.
56    --
57    --  A project file (without any sources) is automatically generated
58    --  with the name <project>_naming. It contains a package Naming with
59    --  all the specs and bodies for the project.
60    --  A file containing the source file names is automatically
61    --  generated and used as the Source_File_List for the project file.
62    --  It includes all sources that follow the Foreign_Patterns (except those
63    --  that follow Excluded_Patterns).
64
65    --  Preproc_switches is a list of optional preprocessor switches -gnatep=
66    --  and -gnateD that are used when invoking the compiler to find the
67    --  unit name and kind.
68
69 end Prj.Makr;