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 X-Google-Thread: 103376,112ee4ae931079e6 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-09-06 13:42:46 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!nntp.cs.ubc.ca!freenix!wanadoo.fr!not-for-mail From: Guillaume Foliard Newsgroups: comp.lang.ada Subject: Re: Using GNU make with ObjectAda Date: Sat, 06 Sep 2003 22:42:44 +0200 Organization: Old Europe Message-ID: References: NNTP-Posting-Host: aboulogne-102-1-3-29.w193-253.abo.wanadoo.fr Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Trace: news-reader5.wanadoo.fr 1062880965 28631 193.253.180.29 (6 Sep 2003 20:42:45 GMT) X-Complaints-To: abuse@wanadoo.fr NNTP-Posting-Date: 6 Sep 2003 20:42:45 GMT User-Agent: KNode/0.7.2 Xref: archiver1.google.com comp.lang.ada:42214 Date: 2003-09-06T20:42:45+00:00 List-Id: Tim Spargo wrote: > Hi, > > I am relatively new to Ada (from the Dark side - C++). I am trying to use > GNU make to create a makefile for some ObjectAda projects I am working on. > ......... > Any thoughts from the learned Ada people out there would be appreciated... > Even a general direction would be helpful... I do not understand why you want to generate dependencies. I'm using the command line version of ObjectAda under Unix everyday for more than 3 years now and I _never_ had to do this. Here is what to do : adareg adabuild That's all. For Gnat users, adabuild is more or less the equivalent of gnatmake, adareg is a tool which registers the source files in the Ada compilation library. This registering step is needed as ObjectAda does not enforce a naming scheme on source files. -- Guillaume