On Thu, Jun 01, 2006 at 09:15:21AM -0500, Aaron Spike wrote:
Am I correct that autogen.sh uses Makefile.am (including Makefile_insert) to generate Makefile.in which is used by configure to create Makefile?
That's correct. Makefile_insert is an inkscape-specific thing we did in order to allow those same Makefile fragments to be reused for other build systems (i.e., Win43).
I don't know how things are handled with Win32-only files. registry* sounds like a windows-ism, so might not actually belong there... Maybe there's some other way to handle windows files?
So I should add registrytool.* to Makefile_insert. Next question is where in that file should it go? There are a number of different groups of files.
I would just be guessing, but one approach could be to look for files that are related to registrytool.*, and see where they're located. It's almost certainly going to be either libinkpre_a_SOURCES or libinkpost_a_SOURCES. It may not matter which one you use; I'd probably try it on the first, and if there was a problem, try moving it to the other.
Bryce