in reply to Re^4: Real Static Modules
in thread Real Static Modules

If I read ExtUtils::MakeMaker's documentation correctly, you may be able to add static objects to the OBJECT parameter of WriteMakefile() in your Makefile.PL
WriteMakefile( # stuff OBJECT => 'mylib.o anotherlib.o $(BASEEXT)$(OBJ_EXT)' # more stuff );