Is the following problem that I have just encountered related to what is being discussed in this thread?
When I did a make distclean ; perl Makefile.PL ; make ; make install the code-tied rules were not installed. I believe having a make test in there didn't make a difference. The problem now is that perl Makefile.PL constructs a list of rules to be copied during installed and writes it into Makefile. The list is constructed from the rules directory which doesn't exist anymore after a distclean. The following is now necessary to get a proper install make distclean ; perl makefile.PL ; make ; perl makefile.PL ; make ... -- sidney
