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-Thread: 103376,b8f434beacb55075,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit From: Ottavio Campana User-Agent: Debian Thunderbird 1.0.7 (X11/20051017) X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: autotools and ada Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit NNTP-Posting-Host: $$5grnjf-xhe7m2.x-privat.org Message-ID: <43842543$2_1@x-privat.org> Organization: X-Privat NNTP Server - http://www.x-privat.org X-Authenticated-User: $$j3b0v52yx5_5pvfcjvj2ehocqmnbp X-Complaints-To: abuse@x-privat.org Date: 23 Nov 2005 09:16:03 +0100 Path: g2news1.google.com!news2.google.com!proxad.net!newsfeed.stueberl.de!news.germany.com!news.newsland.it!x-privat.org!not-for-mail Xref: g2news1.google.com comp.lang.ada:6542 Date: 2005-11-23T09:16:03+01:00 List-Id: Hi, I'm trying to develop a program using autotools to manage the makefiles. I haven't found anything on the web, except for this http://oopweb.com/Ada/Documents/AdaLinux/VolumeFrames.html?/Ada/Documents/AdaLinux/Volume/5.html which says "It is possible to use autoconf and automake on Ada Makefiles, but this topic is beyond the scope of this book" so I don't know what to do. I'm familiar with autotools and c/c++, but not with ada. If I try to set up a project and to compile it, I obtain: bott@pcimg12:~/Progetti/turbo$ make Making all in src make[1]: Entering directory `/home/bott/Progetti/turbo/src' cc -o subtypes cc: no input files make[1]: *** [subtypes] Error 1 make[1]: Leaving directory `/home/bott/Progetti/turbo/src' make: *** [all-recursive] Error 1 bott@pcimg12:~/Progetti/turbo$ so I see that it calls the wrong compiler. do you have any hint? Thank you for your help.