http://www.perlmonks.org?node_id=998573


in reply to Re: Simple Regex Question / Code Review
in thread Simple Regex Question / Code Review

Thanks! While I do understand that there is always going to be more than one or two ways of accomplishing a task in Perl, as well as in *nix systems in general, I was attempting to accomplish this particular task primarily as an exercise in my Perl scripting. Thank you for the reference though. Google'd + Bookmarked; I've never quite understood makefiles, and now you've inspired me to investigate.
  • Comment on Re^2: Simple Regex Question / Code Review

Replies are listed 'Best First'.
Re^3: Simple Regex Question / Code Review
by Anonymous Monk on Oct 12, 2012 at 08:41 UTC

    Make felt pretty impenetrable to me, too, as every example makefile I saw was usually a minimum of 20-30 lines.

    The tutorial I linked you to is quite heavy. I would read up to chapter 3.1 (skip 2.7) -- that covers the essentials.

    Anyway, I must warn you that PMake ("BSD Make") is not GNU Make. The latter can be found on pretty much every Linux system, and the most noticeable difference between them is the variable names. I find PMake's variables to be named much nicer ($(.TARGET) vs $@ or $(.IMPSRC) vs $<)

    Anyway, you can manage without touching those variables, and I recommended that tutorial because it does a good job in explaining the basics.