Craig A. Berry [Thu, 4 Dec 2003 16:00:03 +0000 (10:00 -0600)]
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <
3FCFAE63.1080106@mac.com>
p4raw-id: //depot/perl@21843
sub top_targets {
my $self = shift;
+ return $self->SUPER::top_targets if $^O eq 'VMS';
my $r = '
all :: static
$(NOECHO) $(NOOP)
lint:
lint -abchx $(LIBSRCS)
-';
- $r .= '
# This is a workaround, the problem is that our old GNU make exports
# variables into the environment so $(MYEXTLIB) is set in here to this
# value which can not be built.
sdbm/libsdbm.a:
$(NOECHO) $(NOOP)
-' unless $^O eq 'VMS';
+';
return $r . $self->SUPER::top_targets;
}