"Alfred M. Szmidt" <a...@gnu.org> writes: > Simon, do you have any bright ideas on how to rework man/Makefile.am > so that it will handle a central directory for `one-file programs'? > Currently it always looks e.g. rexec/rexec when trying to find rexec, > while this is true for some programs, it might not be true for all of > them (like rexec which would live under src/).
It should already work, you can add a expression for any tool like that in the mapped_name variable: mapped_name = `echo ../$(TOOL)/$(TOOL) | sed s,../rexec/rexec,../src/rexec,` /Simon