Custom Query (100 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (64 - 66 of 100)

Ticket Resolution Summary Owner Reporter
#58 fixed kmk: if $(VAR) != $(VAR) bird bird
Description

Bug in new if expressions, can reference a variable without using double quotes.

#59 fixed kmk: $(commands ) makes $+ == $^ bird bird
Description

set_file_variables is called once too much.

#60 fixed kmk: .MUST_MAKE - hook for forcing a file to be made bird bird
Description

This is a new feature from the GNU Make TODO list that I've take a shot at because it will come in handy to deal with the $(commands ) mess/load.

The feature works like this, .MUST_MAKE is a target variable which will be looked for when a file is being considered for make but none of the prereqs requires it to be made. It is expanded in a limited file context, that means that $+, $, $? and $| are not readily available and weird stuff may yet happen because of VPATH. If .MUST_MAKE expands to a non-zero string after stripping, it will force the file to be made. Otherwise the file won't be made on its account at least.

Note: See TracQuery for help on using queries.