Stefan Bienert wrote: > and after this, noinst_HEADERS is not used anymore. Should'nt > noinst_HEADERS be set before line 49?
Variable assignments with '=' (as opposed to ':=') in Makefiles use deferred expansion, meaning that values are recursively substituted at the point at which the variable is used, not when it's defined. So no, it's not a problem that noinst_HEADERS is defined after other variables that use it on the RHS of '='. Brian