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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news3.google.com!proxad.net!feeder1-2.proxad.net!fdn.fr!gegeweb.org!aioe.org!nospam From: "John B. Matthews" Newsgroups: comp.lang.ada Subject: Re: Newbie question: How to use gnat make Date: Sat, 19 Sep 2009 11:54:24 -0400 Organization: The Wasteland Message-ID: References: NNTP-Posting-Host: LQJtZWzu+iKlBROuDg+IUg.user.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org X-Notice: Filtered by postfilter v. 0.8.0 Cancel-Lock: sha1:6envyJ3o5WeuH3rtMt8ZSE7olfo= User-Agent: MT-NewsWatcher/3.5.3b3 (Intel Mac OS X) Xref: g2news2.google.com comp.lang.ada:8396 Date: 2009-09-19T11:54:24-04:00 List-Id: In article , Markus wrote: > What about the file extensions .ada/.adb/.ads? In addition to Ludovic Brenta's discussion of .ads and .adb, a file ending in .ada is a convenient way to store multiple compilation units in a single file. Such a file is typically created with the 'cat' command. Typically, it is not directly compilable, but it can be restored to individual units with the 'gnatchop' utility. For example, -- John B. Matthews trashgod at gmail dot com