Hello! I'm trying to dig in one autotools-based project, kind of big in fact. I'm working on a small part of it, a subdirectory. And I need to add/move/remove files and directories constantly inside this little part.
Running ./configure on top-level every time not only time-consuming, but causes the whole object tree to become invalid (sorry about the terms, but I'm kind of new at this). So I figured out how to regenerate Makefile.in from Makefile.am (by running automake path/to/my/part), and I figured out how to regenerate Makefile from Makefile.in in build tree (by runinning ./config.status path/to/my/part). But there's something I still cannot figure out: how to regenerate all dependency files (.deps/*.Plo inside each subdirectory in build tree). Indeed, running configure again solves the problem. So, my question is: how to regenerate dependency files without running configure again? Thanks in advance.