Reputation: 323414
What build system (make, ExtUtils::MakeMaker, Module::Build, ...) to use in a Perl subsystem (e.g. Perl bindings, or an auxillary command implemented in Perl), and how to connect it to build system of the main project. The project itself uses make as a build system. Perl subsystem is in a separate subdirectory.
We can assume that if there is Perl installed, then it is at least version 5.8.3.
Upvotes: 0
Views: 107
Reputation: 39158
For 5.8 EUMM is okay. Connect it to the main Makefile the straight-forward way, write a perl-binding
target which just contains the usual incantation.
Upvotes: 1