in reply to A Makefile for installing a set of perl scripts and modules

Although perl can do everything, it seems that this job is ideally suited for Make.

It sounds to me like the job is ideally suited for a shell script.

-sauoq
"My two cents aren't worth a dime.";
  • Comment on Re: A Makefile for installing a set of perl scripts and modules

Replies are listed 'Best First'.
Re: Re: A Makefile for installing a set of perl scripts and modules
by Tardis (Pilgrim) on Oct 30, 2002 at 03:53 UTC
    It sounds to me like the job is ideally suited for a shell script.
    Possibly. I didn't completely discount such an idea. However using make or MakeMaker I guess could give me some other niceness, like only changing files that are older than the distribution ones, giving me different install targets for different parts of the system etc.

    I didn't think this wheel was worth re-inventing.