diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-15 02:57:08 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-15 02:57:08 +0000 |
commit | b83c0eaa789c1e1527712ef4c3c985dde6539c3a (patch) | |
tree | 1d9da4e0d93624e886b42e699519739dcf6c0d7f /jpl/JPL | |
parent | 30944b6df13d14ca352a3fdf86275e7fe6eb44b5 (diff) | |
download | perl-b83c0eaa789c1e1527712ef4c3c985dde6539c3a.tar.gz |
update to JPL snapshot v09141999, with minor tweaks (from Brian
Jepson <bjepson@home.com>)
p4raw-id: //depot/perl@4159
Diffstat (limited to 'jpl/JPL')
-rw-r--r-- | jpl/JPL/Makefile.PL | 42 |
1 files changed, 6 insertions, 36 deletions
diff --git a/jpl/JPL/Makefile.PL b/jpl/JPL/Makefile.PL index efb606da17..02e5b4597a 100644 --- a/jpl/JPL/Makefile.PL +++ b/jpl/JPL/Makefile.PL @@ -1,36 +1,6 @@ -#!/usr/bin/perl - -$JPL_SRC = ".."; - -use Config; - -eval `$JPL_SRC/setvars -perl`; - -open(MAKEFILE, ">Makefile"); - -print MAKEFILE <<"SUBS"; -PERL = perl$] -ARCHNAME = $Config{archname} -JAVA_HOME = $ENV{JAVA_HOME} -JPL_HOME = $ENV{JPL_HOME} -PERLARCHDIR = $Config{archlib} - -SUBS - -print MAKEFILE <<'NOSUBS'; - -all: - -debug: - -test: - -install: - mkdir -p $(JPL_HOME)/perl/JPL - cp *.p[ml] $(JPL_HOME)/perl/JPL - -clean: - -NOSUBS - -close MAKEFILE; +use ExtUtils::MakeMaker; +# See lib/ExtUtils/MakeMaker.pm for details of how to influence +# the contents of the Makefile that is written. +WriteMakefile( + 'NAME' => 'JPL::Class', +); |