Is there any way around having to specify every sourcefile I create manually in my automake scripts?
I've tried several ways of specifying sourcefiles using find -name *.cc
or the like. I've also tried finding the list in autoconf and substituting it into the Makefile.am, but automake protested that this is not allowed.
If I have to maintain the list by hand, I'm likely to keep forgetting to add newly created files to the list. I'd rather not have to do that. Is there any way to have new files selected for me automatically?
Any help is appreciated.