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,start X-Google-Attributes: gid103376,public From: bill@nospam.com Subject: using make with gnat? examples? Date: 1999/01/26 Message-ID: <78l8gn$g7d@drn.newsguy.com>#1/1 X-Deja-AN: 437264808 Organization: Newsguy News Service [http://www.newsguy.com] Newsgroups: comp.lang.ada Date: 1999-01-26T00:00:00+00:00 List-Id: 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.