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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,91468934e6123e1e X-Google-Attributes: gid103376,public From: "Paul Hussein" Subject: Re: using make with gnat? examples? Date: 1999/01/28 Message-ID: <78p8n0$40h$1@trog.dra.hmg.gb>#1/1 X-Deja-AN: 437866855 References: <78l8gn$g7d@drn.newsguy.com> X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.0810.800 Organization: Defence Evaluation & Research Agency X-MSMail-Priority: Normal Newsgroups: comp.lang.ada Date: 1999-01-28T00:00:00+00:00 List-Id: I build about 20+ large varying executables using shell scripts and gnatmake. Works well. wrote in message news:78l8gn$g7d@drn.newsguy.com... >Hello, > >any one uses make or gmake for building gnat applications? >now, I build my gnat application using a shell script, where >I simply call gnatmake, with a number of -I arguments, each >-I argument for a package that used by the main, as in: > >gnatmake main.adb -I../pkgs/pkkg1 -I../pkgs/pkg2 -I../pkgs/pkg2 > >what do you think of this method? is this enough for even very large >applications? > >I am more used to using makefiles though. but with gnat using ali files, >and such, not sure how to construct the makefile dependencies myself, >instead of letting gnatmake do its job? > >thanks, >bill.