meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
programming:makefile:issues [2024/05/22 12:01] – ↷ Page moved from makefile:issues to programming:makefile:issues niziakprogramming:makefile:issues [2024/05/27 19:33] (current) niziak
Line 31: Line 31:
 <code make>DUMP_FILE_LIST := +"$(MAKE)" -s --no-print-directory ...</code> <code make>DUMP_FILE_LIST := +"$(MAKE)" -s --no-print-directory ...</code>
  
-  The problem is that GNU make, to implement parallel build, requires special options and descriptors to be passed over the sub-make calls, this happens automatically when make is invoked directly or through $(MAKE) but if it’s indirected through variables, then it’s not happening automatically and the developer has to tell GNU make to actually pass the options along.+  The problem is that GNU make, to implement parallel build, requires special options and descriptors to be passed 
 +  over the sub-make calls, this happens automatically when make is invoked directly or through $(MAKE) but if it’s 
 +  indirected through variables, then it’s not happening automatically and the developer has to tell GNU make to 
 +  actually pass the options along. 
 +