Lines Matching defs:make

69 	     install make readme recompile shell test clean
258 make test install force readme reload look
377 # Foo Foo Foo'. People make this kind of mistakes and I don't want to
581 Please make sure the directory exists and is writable.
600 Please make sure that the configuration variable
1285 "scan_cache", "index_expire", "gzip", "tar", "unzip", "make",
1367 make make (implies get)
1368 test MODULES, make test (implies make)
1369 install DISTS, BUNDLES make install (implies test)
1370 clean make clean
2160 #-> sub CPAN::Shell::make ;
2161 sub make { shift->rematein('make',@_); }
2988 [mru]|make|clean|dump|get|test|install|readme|look|cvs_import
3014 # make it sorted again. Maybe sort was dropped when GNU-readline
3314 # Let's make it a module too, because bundles have so much
4370 MD5_STATUS archived build_dir localfile make install unwrapped
4434 #-> sub CPAN::Distribution::make ;
4435 sub make {
4437 $CPAN::Frontend->myprint(sprintf "Running make for %s\n", $self->id);
4477 defined $self->{'make'} and push @e,
4491 Mac::BuildTools::make($self);
4565 $system = join " ", $CPAN::Config->{'make'}, $CPAN::Config->{make_arg};
4568 $self->{'make'} = "YES";
4571 $self->{'make'} = "NO";
4704 $self->make;
4709 $CPAN::Frontend->myprint("Running make test\n");
4715 exists $self->{make} or exists $self->{later} or push @e,
4718 exists $self->{'make'} and
4719 $self->{'make'} eq 'NO' and
4720 push @e, "Can't test without successful make";
4744 my $system = join " ", $CPAN::Config->{'make'}, "test";
4759 $CPAN::Frontend->myprint("Running make clean\n");
4763 push @e, "make clean already called once";
4776 my $system = join " ", $CPAN::Config->{'make'}, "clean";
4790 delete $self->{make};
4795 # Hmmm, what to do if make clean failed?
4799 make clean did not succeed, marking directory as unusable for further work.
4801 $self->force("make"); # so that this directory won't be used again
4814 $CPAN::Frontend->myprint("Running make install\n");
4819 exists $self->{make} or exists $self->{later} or push @e,
4822 exists $self->{'make'} and
4823 $self->{'make'} eq 'NO' and
4824 push @e, "make had returned bad status, install seems impossible";
4826 push @e, "make test had returned bad status, ".
4851 my $system = join(" ", $CPAN::Config->{'make'},
5166 #-> sub CPAN::Bundle::make ;
5167 sub make { shift->rematein('make',@_); }
5509 #-> sub CPAN::Module::make ;
5510 sub make {
5512 $self->rematein('make');
6010 autobundle, clean, install, make, recompile, test
6024 The CPAN module is designed to automate the make and install of perl
6041 the make processes and deletes excess space according to a simple FIFO
6095 =item make, test, install, clean modules or distributions
6105 Any C<make> or C<test> are run unconditionally. An
6120 method to invoke (currently: C<make>, C<test>, or C<install>) and executes the
6128 Running make
6135 make clean
6188 runs the make/test/install cycle with brute force over all installed
6224 name when you run 'make dist'), so the really hottest and newest
6412 =item CPAN::Bundle::make()
6414 Recursively runs the C<make> method on all items contained in the bundle
6435 runs C<make clean> there.
6474 runs the external command C<make install> there. If C<make> has not
6475 yet been run, it will be run first. A C<make test> will be issued in
6492 =item CPAN::Distribution::make()
6494 First runs the C<get> method to make sure the distribution is
6497 Makefile.PL> and C<make> there.
6503 attempt has been made to C<make> the distribution. Returns undef
6514 runs C<make test> there.
6599 =item CPAN::Module::make()
6601 Runs a C<make> on the distribution associated with this module.
6730 arguments as make/test/install and outputs the object's Data::Dumper
6778 make location of external make program
6779 make_arg arguments that should always be passed to 'make'
6780 make_install_arg same as make_arg for 'make install'
6941 I say one way visibility as these firewalls try to make themselves look
7011 the argument C<UNINST=1> to the C<make install> call, and that is why
7048 o conf make_arg "| tee -ai /root/.cpan/logs/make.out"
7065 You can make this setting permanent like all C<o conf> settings with
7081 How to get a package, unwrap it, and make a change before building it?