OSDN Git Service

* Makefile.in (reload1.o-warn): Remove.
[pf3gnuchains/gcc-fork.git] / gcc / ada / prj-makr.ads
index 4bba35c..4bb0ead 100644 (file)
@@ -6,9 +6,7 @@
 --                                                                          --
 --                                 S p e c                                  --
 --                                                                          --
---                            $Revision$
---                                                                          --
---             Copyright (C) 2001-2002 Free Software Foundation, Inc.       --
+--          Copyright (C) 2001-2005, Free Software Foundation, Inc.         --
 --                                                                          --
 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
 -- terms of the  GNU General Public License as published  by the Free Soft- --
 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
 -- for  more details.  You should have  received  a copy of the GNU General --
 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
--- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
--- MA 02111-1307, USA.                                                      --
+-- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
+-- Boston, MA 02110-1301, USA.                                              --
 --                                                                          --
 -- GNAT was originally developed  by the GNAT team at  New York University. --
--- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
+-- Extensive contributions were provided by Ada Core Technologies Inc.      --
 --                                                                          --
 ------------------------------------------------------------------------------
 
---  Support for procedure Gnatname.
+--  Support for procedure Gnatname
 
 --  For arbitrary naming schemes, create or update a project file,
 --  or create a configuration pragmas file.
 
-with GNAT.OS_Lib; use GNAT.OS_Lib;
-
 package Prj.Makr is
 
    procedure Make
@@ -41,6 +37,8 @@ package Prj.Makr is
       Directories       : Argument_List;
       Name_Patterns     : Argument_List;
       Excluded_Patterns : Argument_List;
+      Foreign_Patterns  : Argument_List;
+      Preproc_Switches  : Argument_List;
       Very_Verbose      : Boolean);
    --  Create a project file or a configuration pragmas file
    --
@@ -61,5 +59,11 @@ package Prj.Makr is
    --  all the specs and bodies for the project.
    --  A file containing the source file names is automatically
    --  generated and used as the Source_File_List for the project file.
+   --  It includes all sources that follow the Foreign_Patterns (except those
+   --  that follow Excluded_Patterns).
+
+   --  Preproc_switches is a list of optional preprocessor switches -gnatep=
+   --  and -gnateD that are used when invoking the compiler to find the
+   --  unit name and kind.
 
 end Prj.Makr;