Jim Rees <[EMAIL PROTECTED]> writes: > Another reason to do this in a Makefile is that it currently rebuilds > everything (right?) even if it doesn't have to.
One of the main points of make is exactly to not do that. :) The problem with doing this purely as a Makefile rule, rather than as a similar script in the Makefile which would probably be an improvement, is that there's no way to do this sort of mass conversion cleanly without either listing all of the man pages again in the Makefile (an annoying maintenance problem) or using GNU make features. That's why I tend to use for loops instead. -- Russ Allbery ([EMAIL PROTECTED]) <http://www.eyrie.org/~eagle/> _______________________________________________ OpenAFS-devel mailing list [email protected] https://lists.openafs.org/mailman/listinfo/openafs-devel
