I can't use "make" during installing module ?

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default I can't use "make" during installing module ?

    I downloaded module , after that I use
    perl Makefile.Pl ... It's OK ... then I use
    Make --> Dos told that "'make' is not recognized as an internal or external command, operable program or batch file."

    How can I use make ?

    thks
    Kee

    kee Guest

  2. Similar Questions and Discussions

    1. #33400 [Opn->Csd]: make "make" a dendency of "make test"
      ID: 33400 Updated by: tony2001@php.net Reported By: nohn@php.net -Status: Open +Status: Closed Bug...
    2. Install Hangs on "Installing Merge Module"
      I had run into an issue earlier today where my CFM pages would not display although all of the services and IIS were running fine. I decided to...
    3. Problem installing a perl module "File exists"
      Hello, i'm trying to install the Date::Simple module, but i have an error: $ tar xvzf Date-Simple-3.01.tar.gz Date-Simple-3.01/...
    4. "make Makefile.PL" returns "...up to date"; make returns "no target to make"
      I'm attempting to install a perl module (AppConfig-1.56) on a FreeBSD 4.9 system. It has both perl 5.5.3 and 5.8.3 and several modules are already...
    5. can't use "make" during install module ?
      I downloaded module , after that I use perl Makefile.Pl ... It's OK ... then I use Make --> Dos told that "'make' is not recognized as an internal...
  3. #2

    Default I can't use "make" during installing module ?

    I downloaded module , after that I use

    perl Makefile.Pl

    It's OK ,then I use

    Make

    Dos told that "'make' is not recognized as an internal or external command, operable program or batch file."

    How can I use make ?

    thks
    Kee

    kee Guest

  4. #3

    Default I can't use "make" during installing module ?

    I downloaded module , after that I use

    perl Makefile.Pl

    It's OK ,then I use

    Make

    Dos told that "make" is not recognized as an internal or external command, operable program or batch file."

    How can I use make ?

    thks
    Kee

    kee Guest

  5. #4

    Default Re: I can't use "make" during installing module ?

    "kee" <ryo_jung2@yahoo.com> wrote:
    ^^^
    Please use your real name.
    > I downloaded module
    Please specify the module, otherwise we can't offer you detailed
    information.
    > [...]
    > How can I use make ?
    Generally I would say, you've used it correctly, because usually it is
    only

    $ perl Makefile.pl
    $ make
    $ make test
    $ make install

    C.

    --
    The most annoying thing about real life is that killing someone
    is much more difficult.
    Christian Schoeller Guest

  6. #5

    Default Re: I can't use "make" during installing module ?

    On Wed, 04 Feb 2004 08:51:15 -0600, kee wrote:
    > I downloaded module , after that I use
    >
    > perl Makefile.Pl
    >
    > It's OK ,then I use
    >
    > Make
    >
    > Dos told that "make" is not recognized as an internal or external
    > command, operable program or batch file."
    >
    > How can I use make ?
    Do you have 'make' on your system? Is your PATH set properly? Have you
    compiled modules in the past? If you're using ActiveState's Perl, then
    why are you not using PPM?

    --
    Jim

    Copyright notice: all code written by the author in this post is
    released under the GPL. [url]http://www.gnu.org/licenses/gpl.txt[/url]
    for more information.

    a fortune quote ...
    Where humor is concerned there are no standards -- no one can say
    what is good or bad, although you can be sure that everyone will.
    -- John Kenneth Galbraith
    James Willmore Guest

  7. #6

    Default Re: I can't use "make" during installing module ?

    kee wrote:
    > I downloaded module , after that I use
    >
    > perl Makefile.Pl
    >
    > It's OK ,then I use
    >
    > Make
    >
    > Dos told that "make" is not recognized as an internal or external command, operable program or batch file."
    >
    > How can I use make ?
    >
    To see which flavour of make you should use run:
    perl -V:make

    With ActiveState perl this should tell you that you want 'nmake'.
    'nmake15.exe' is freely available from:
    [url]http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe[/url]

    After you download it, run the executable and have the wizard place
    'nmake.exe' in one of the folders in your path.

    Then you'll be able to run 'nmake' whenever you like.

    You still won't be able to build modules that contain '.xs' files
    because you need the msvc++ compiler for that.

    Cheers,
    Rob


    --
    To reply by email u have to take out the u in kalinaubears.

    Sisyphus Guest

  8. #7

    Default I can't use "make" during installing module ?

    I'm very pleased that you solved my problem Rob.
    Running below command made me find the kind of make i should run.
    Thanks alot.

    #>perl -V:make
    make='dmake';
    ismail Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139