gnatcmd.ads 2.26 KB
Newer Older
Richard Kenner committed
1 2 3 4 5 6 7 8
------------------------------------------------------------------------------
--                                                                          --
--                         GNAT COMPILER COMPONENTS                         --
--                                                                          --
--                              G N A T C M D                               --
--                                                                          --
--                                 S p e c                                  --
--                                                                          --
9
--          Copyright (C) 1996-2019, Free Software Foundation, Inc.         --
Richard Kenner committed
10 11 12
--                                                                          --
-- 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- --
13
-- ware  Foundation;  either version 3,  or (at your option) any later ver- --
Richard Kenner committed
14 15 16 17
-- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
-- 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 --
18 19
-- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license.          --
Richard Kenner committed
20 21
--                                                                          --
-- GNAT was originally developed  by the GNAT team at  New York University. --
22
-- Extensive contributions were provided by Ada Core Technologies Inc.      --
Richard Kenner committed
23 24 25 26
--                                                                          --
------------------------------------------------------------------------------

--  This program provides a simple command interface for using GNAT and its
Arnaud Charlet committed
27
--  associated utilities.
Richard Kenner committed
28 29

--    The program is typically called GNAT when it is installed and
30
--    the two possible styles of use are:
Richard Kenner committed
31 32 33

--  To call gcc:

Arnaud Charlet committed
34
--    GNAT compile filename switches
Richard Kenner committed
35 36 37 38 39

--  To call the tool gnatxxx

--    GNAT xxx filename switches

Arnaud Charlet committed
40
--  where xxx is the command name (e.g. MAKE for gnatmake).
Richard Kenner committed
41 42

procedure GNATCmd;