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,6924214332f7521d X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!v61g2000cwv.googlegroups.com!not-for-mail From: "Martin Krischik" Newsgroups: comp.lang.ada Subject: Re: Compilation on Vax with script files Date: 3 Jul 2006 23:19:19 -0700 Organization: http://groups.google.com Message-ID: <1151993959.437178.25990@v61g2000cwv.googlegroups.com> References: <1151930575.129180.284470@j8g2000cwa.googlegroups.com> NNTP-Posting-Host: 194.41.216.139 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1151993964 15172 127.0.0.1 (4 Jul 2006 06:19:24 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 4 Jul 2006 06:19:24 +0000 (UTC) In-Reply-To: <1151930575.129180.284470@j8g2000cwa.googlegroups.com> User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.0; de; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4,gzip(gfe),gzip(gfe) X-HTTP-Via: 1.0 fproxy.post.ch:3128 (squid/2.5.STABLE10) Complaints-To: groups-abuse@google.com Injection-Info: v61g2000cwv.googlegroups.com; posting-host=194.41.216.139; posting-account=2-0LkQwAAAAQMhPSoYwlMiUmi-6lYh44 Xref: g2news2.google.com comp.lang.ada:5452 Date: 2006-07-03T23:19:19-07:00 List-Id: Chris L wrote: > Are there any script files that commonly compile large programs? Do you > have an example? You mean VAX - which implies DecAda - and not a more modern OpenVMS? For compiling you won't need that much scripting. DecAda - like most Ada's handle dependencies automaticly so compile is just: acs load *.ada acs compile * acs link Main.ada However on large systems you might want to break sources down into several libraries - in which case you also need acs merge /Keep * and you should create your libraries with acs create library /Large For all commands you get extra help with help acs create library /Large But I guess you know that allready. And from there it is just a matter of a few dcl or mms scripts. And to answer your questions: There are no common files - the (dcl) scripts I use are highly specific and won't help you. Martin