Nick Ing-Simmons wrote pmake, a Perl implementation of make. I don't know where to find it; a manual CPAN search didn't turn up anything, and there's another same-named "pmake" out there that's a parallel-implementation of make which returns more Google hits. Update:It uses the Make.pm module, which is available on CPAN.

Cons is a more "purely Perl" make substitute. The configuration files are Perl scripts that call an API to establish targets and dependencies. Dependency analysis and builds are all carried out by a single top-level executable, not through recursive invocation of the tool.

makepp (a.k.a. make++) is a Perl re-implementation of make that preserves Makefile syntax, but uses the Cons build-engine model of a single top-level process.

Lastly, Rich Miller created a utility named "perlmake" for IDX Systems Corp., but I don't think it's been publicly released.

In reply to RE: Make vs. Perl by knight
in thread Make vs. Perl by tedv

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.