Jakub Narębski
Jakub Narębski

Reputation: 323414

Building and installing Perl subsystem in a project that uses make (Makefile)

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

Answers (1)

daxim
daxim

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

Related Questions