Sylvain Petreolle spetreolle@yahoo.fr writes:
I noticed that the Makefile in tests directory actually already tries to regenerate it. But instead, it fails,because it uses this path :
tests -> ../../.. -> dlls -> generation of lib${IMPORTS}.def (IMPORTLIBS in Makefile)
where it could do, much simpler (and without slowdown) :
tests -> .. -> generation of $(TESTDLL:%.dll=%).def
No, we really need the libxxx.def file in the dlls directory. Your solution may seem to work in that specific case because the symlink in dlls still exists, but it's not the correct dependency.