* arm.c (FL_WBUF): Define.
[official-gcc.git] / gcc / ada / prj-makr.ads
blob3cf53b587a647697363ad35c6aee70927a4dc639
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 ------------------------------------------------------------------------------
27 -- Support for procedure Gnatname.
29 -- For arbitrary naming schemes, create or update a project file,
30 -- or create a configuration pragmas file.
32 with GNAT.OS_Lib; use GNAT.OS_Lib;
34 package Prj.Makr is
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
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.
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.
56 -- File_Name_Patterns is a GNAT.Regexp string pattern such as
57 -- ".*\.ads|.*\.adb" or any other pattern.
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).
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.
71 end Prj.Makr;