RE: makefile:71: *** Recursive variable `LIBS' references itself (eventually). Stop

2003-10-28 Thread Dominique DEUFF
There are two types of assignments. LIBS= file.a Result in late evaluation. What is to the right of '=' is evaluated only when LIBS is referenced. With late evaluation a variable cannot reference itself - that the problem you see. Late evaluation is required when for example using the follow

makefile:71: *** Recursive variable `LIBS' references itself (eventually). Stop

2003-10-27 Thread Dominique DEUFF
Hello, I have to rebuild a project with the makefile I join at the end. I obtain this error : makefile:71: *** Recursive variable `LIBS' references itself (eventually). Stop Does anyone know a solution to this ? Thank you very much,