Re: Looking for nastiest makefile that uses function calls to make the makefile in memory...

2017-03-18 Thread Dagobert Michelsen
Hi Brian, Am 17.03.2017 um 17:45 schrieb Brian Cowan : > I'm chasing down use cases for the $(call and $(eval functions to > effectively build the makefile from macros in the makefile (or included > files). I'm looking to stress-test the make tool I support, which supports > GNU make syntax, but I

Re: Looking for nastiest makefile that uses function calls to > make the makefile in memory...

2017-03-18 Thread Pierre LINDENBAUM
A divide+conquer makefile: http://plindenbaum.blogspot.fr/2014/12/divide-and-conquer-in-makefile.html P. From: "Brian Cowan" To: "make-help mailing list" Subject: Looking for nastiest makefile that uses function calls to make themakefile in memory... Message-ID: C

Re: Looking for nastiest makefile that uses function calls to > make the makefile in memory...

2017-03-18 Thread Kenneth Adam Miller
The makefile use that is present in the ocaml project ctypes is pretty nasty, maybe it has what you're looking for. Definitely there are an bunch of macros and variable re-evaluations. On Sat, Mar 18, 2017 at 1:05 PM, Pierre LINDENBAUM < pierre.lindenb...@univ-nantes.fr> wrote: > A divide+conquer