diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 2001-06-26 00:22:25 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-26 11:57:44 +0000 |
commit | 5f929d0c0da8cd6ab656225ff6a3f15d20352856 (patch) | |
tree | 0ff8d0c7c3184fecb78c42a398d4bfd476693c4b /ext | |
parent | 2b96b0a587f7ad8b6305181755f2d821e8a640ff (diff) | |
download | perl-5f929d0c0da8cd6ab656225ff6a3f15d20352856.tar.gz |
static build
Message-ID: <20010626042225.A2604@math.ohio-state.edu>
p4raw-id: //depot/perl@10952
Diffstat (limited to 'ext')
-rw-r--r-- | ext/List/Util/Makefile.PL | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/List/Util/Makefile.PL b/ext/List/Util/Makefile.PL index e2b7be9537..93f1d4fc54 100644 --- a/ext/List/Util/Makefile.PL +++ b/ext/List/Util/Makefile.PL @@ -42,6 +42,18 @@ sub xs_o { # many makes are too dumb to use xs_c then c_o '; } +sub top_targets { # many makes are too dumb to use xs_c then c_o + my($self) = shift; + my $out = $self->SUPER::top_targets(@_); + $out . +' + +ListUtil.c: Util.c + @$(NOOP) + +'; +} + __EOMM__ } } |