Python packages configured with setuptools have a nice feature called "development mode" (named "editable install" by pip), which installs symbolic links from files in the appropriate install directories (/usr/lib/...
, etc.) to files in the package directory instead of copying them.
The idea being of course that you can use this while developing the package, as it saves you the time of running the whole installation again every time you make a change.
Is there an analogous feature in or extension for the GNU Autotools (Autoconf, Automake), such that you could run e.g. make develop
once before starting development, have it create the appropriate symlinks and be done with it?