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,1b318523079de3b4 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-07-24 16:08:02 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!kibo.news.demon.net!news.demon.co.uk!demon!pogner.demon.co.uk!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: gnooch makefile Date: 24 Jul 2002 23:51:32 +0100 Organization: Pushface Sender: simon@smaug Message-ID: References: NNTP-Posting-Host: pogner.demon.co.uk X-NNTP-Posting-Host: pogner.demon.co.uk:62.49.19.209 X-Trace: news.demon.co.uk 1027552044 nnrp-10:18293 NO-IDENT pogner.demon.co.uk:62.49.19.209 X-Complaints-To: abuse@demon.net User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Xref: archiver1.google.com comp.lang.ada:27373 Date: 2002-07-24T23:51:32+01:00 List-Id: Jan Prazak writes: > How to execute the makefile in the gnooch ada components? > There is no information about it, there is only how to extract the > archive. Oh, I can see that would be a problem. I guess what's needed is a "how to set up your program library" note. If you just wanted to run the tests (and assuming you are running on Linux), you can $ tar zxvf bc-20020602.tgz $ cd bc-20020602/test $ make test to run the tests. But normally I'd do something like $ cd work-directory $ gnatmake -I/where/ever/bc-20020602 my-program I know this creates lots of .o, .ali files in your working directory, you can get round this using Glide. What OS/GNAT are you using?