我想创建自己的 Perl 模块,但问题是它包含多个.pm文件。结构是:
lib
├── A_Z.pm
└── T_test
├── A.pm
├── B.pm
├── C.pm
├── D.pm
└── E.pm
我用过h2xs -XA -n T_test::A T_test::B T_test::C T_test::D T_test::E。它只编译A.pm;其他B.pm, C.pm, D.pm,E.pm不考虑。是否有任何解决方案可以同时执行所有.pm文件?