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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed1a.news.xs4all.nl!xs4all!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed-00.mathworks.com!nntp.TheWorld.com!.POSTED!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: is getting OpenGL to work with Ada a lost cause? Date: Mon, 18 Aug 2014 18:21:44 -0400 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <1bd438c5-7563-4c37-a53d-8378573cf784@googlegroups.com> <59f62e65-dcf0-42c9-82d5-5e1a3c095583@googlegroups.com> <1ed96b4d-e0d4-4a23-b230-dd1eadc14401@googlegroups.com> <14b80334-a07d-4ebb-81f6-34b5469f1134@googlegroups.com> <1919212643429967793.040137laguest-archeia.com@nntp.aioe.org> <1441286327430086309.749208laguest-archeia.com@nntp.aioe.org> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: pcls7.std.com 1408400497 17622 192.74.137.71 (18 Aug 2014 22:21:37 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Mon, 18 Aug 2014 22:21:37 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:4XLA6gZnlfWZnK3mUjixh82vfHk= Xref: news.eternal-september.org comp.lang.ada:21814 Date: 2014-08-18T18:21:44-04:00 List-Id: "Nasser M. Abbasi" writes: > ps. Makefiles are great. I do everything with makefiles. I use > recursive makefile to build a whole tree with one command. 'make' is a rather poorly designed language, IMHO, for all sorts of reasons. (Can't blame the designers -- that was a long time ago, and they didn't know any better.) But recursive make is a big efficiency problem. It's not so terrible on Linux, but on Cygwin, it's a disaster (because windows process creation is slow). I once sped up a build that was taking well over 10 hours down to 1 hour by removing recursive make. The speedup on Linux was less dramatic. That was a project with about a million lines of Ada code. I don't remember the hardware. Here's a paper that explains why "Recursive Make Considered Harmful": http://aegis.sourceforge.net/auug97.pdf And here's a fun recursive essay about "Considered Harmful": http://meyerweb.com/eric/comment/chech.html > ...What > else would one use? a DOS batch file? OK, you win. ;-) DOS batch files are worse than 'make' files. - Bob