On 14.06.2007 13:15, David Kågedal wrote: >> The PATH environment variable is handled internally. You need to use >> >> PATH[] += . >> >> or >> >> PATH[] += $(dir .) > > I see. But I need it to be at the beginning, so I need to write > something else. What is the syntax? PATH[] = $(cons ., $PATH) :-) PATH[] = . $(PATH) or PATH[] = . $(PATH) Aleksey