From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_00,INVALID_MSGID, PP_MIME_FAKE_ASCII_TEXT autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,55a5f36014a8c16c X-Google-Attributes: gid103376,public From: "Thomas G. McWilliams" Subject: Re: IDE for GNAT/Linux? Date: 1998/01/14 Message-ID: #1/1 X-Deja-AN: 315754194 Content-Transfer-Encoding: 8bit Sender: tgm@netcom8.netcom.com References: <34B95DD8.415C2599@altoetting-online.de> <34BA403E.5FDE@gsfc.nasa.gov> <34BC0A6E.8CDD593@altoetting-online.de> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Organization: Jot-Em-Down Store and Library Newsgroups: comp.lang.ada Date: 1998-01-14T00:00:00+00:00 List-Id: Gerhard H�ring wrote : Emacs is just another program with lots & lots of functions I do not : need - too bloated for me (I've had enough fatware on Win95! and I : want to learn Ada, not ELisp plus dozens of new commands) . . . If you want to keep things simple and easy, why not use gnatmake? Just write your code with your favorite text editor. Then all you have to do is aim gnatmake at your root procedure and pull the trigger: gnatmake foobar That's all there is to it. Gnatmake will find all the dependencies and handle them automatically. Just want to do a quick check without generating code? gnatmake -c -gnatc foobar Gnatmake is part of GNAT, therefore you already have a copy of it.