I have a few c++ projects that are built on Linux using autoconf. They were created by some predecessors of mine that are no longer with the company. I wish to create a separate debug symbols file for each binary.
1) I can easily do this on the command line using objcopy and strip, but what is the correct place to add them to the make so that they do not get overwritten should autoconf be run again?
2) Can I convert configure.in to configure.ac easily?
The projects have Makefile.am and configure.in files.
Thanks