* config/arm/elf.h (ASM_OUTPUT_ALIGNED_COMMON): Remove definition.
[official-gcc.git] / gcc / ada / prj-makr.ads
blob868e9a918760c6b169151a3e6a243e1e3aa873b5
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-2002 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 Very_Verbose : Boolean);
43 -- Create a project file or a configuration pragmas file
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.
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.
54 -- File_Name_Patterns is a GNAT.Regexp string pattern such as
55 -- ".*\.ads|.*\.adb" or any other pattern.
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.
63 end Prj.Makr;