diff options
author | Tom Hughes <tom@compton.nu> | 1999-05-27 00:59:49 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-05-28 17:13:23 +0000 |
commit | e8edd1e67bd80dbb476d68f78da80ae76c0eb341 (patch) | |
tree | 08109c36ed32868be933b6115d3e25e6c37ac6a9 /ext/B/Makefile.PL | |
parent | 697943021785eb8447e25eb51a6f27fd78921863 (diff) | |
download | perl-e8edd1e67bd80dbb476d68f78da80ae76c0eb341.tar.gz |
ByteLoader mark 2
To: perl5-porters@perl.org
Message-ID: <bf337a0849.tom@compton.compton.nu>
plus resolve tiny conflict with #3479
plus regen_headers.
p4raw-id: //depot/cfgperl@3499
Diffstat (limited to 'ext/B/Makefile.PL')
-rw-r--r-- | ext/B/Makefile.PL | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/ext/B/Makefile.PL b/ext/B/Makefile.PL index ff3694dacc..9af85c9a62 100644 --- a/ext/B/Makefile.PL +++ b/ext/B/Makefile.PL @@ -18,7 +18,7 @@ WriteMakefile( VERSION => "a5", MAN3PODS => {}, clean => { - FILES => "perl$e byteperl$e *$o B.c defsubs.h *~" + FILES => "perl$e *$o B.c defsubs.h *~" } ); @@ -33,22 +33,3 @@ sub postamble { B$(OBJ_EXT) : defsubs.h ' } - -# Leave out doing byteperl for now. Probably should be built in the -# core directory or somewhere else rather than here -#sub top_targets { -# my $self = shift; -# my $targets = $self->MM::top_targets(); -# $targets =~ s/^(all ::.*)$/$1 byteperl$e/m; -# return <<"EOT" . $targets; - -# -# byteperl is *not* a standard perl+XSUB executable. It's a special -# program for running standalone bytecode executables. It isn't an XSUB -# at the moment because a standlone Perl program needs to set up curpad -# which is overwritten on exit from an XSUB. -# -#byteperl$e : byteperl$o B$o \$(PERL_SRC)/byterun$o -# \$(CC) ${exeout_flag}byteperl$e byteperl$o B$o byterun$o \$(LDFLAGS) \$(PERL_ARCHLIB)/CORE/$Config{libperl} \$(LIBS) -#EOT -#} |