This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Schwern says this is most probably an old VMS MakeMaker
[perl5.git] / ext / SDBM_File / sdbm / Makefile.PL
CommitLineData
42793c05 1use ExtUtils::MakeMaker;
137443ea 2
85c35b1b 3my $define = '-DSDBM -DDUFF';
9c293c15 4$define .= ' -DWIN32 -DPERL_STATIC_SYMS' if ($^O eq 'MSWin32');
137443ea 5
17f28c40
CB
6if ($^O eq 'VMS') { # Old VAXC compiler can't handle Duff's device
7 require Config;
8 $define =~ s/\s+-DDUFF// if $Config::Config{'vms_cc_type'} eq 'vaxc';
9}
10
42793c05 11WriteMakefile(
ba14e5f0 12 NAME => 'sdbm', # (doesn't matter what the name is here) oh yes it does
bf99883d 13# LINKTYPE => 'static',
137443ea 14 DEFINE => $define,
4dcba783 15 INC => '-I$(PERL_INC)', # force PERL_INC dir ahead of system -I's
17f28c40
CB
16 SKIP => [qw(dynamic dynamic_lib dlsyms)],
17 OBJECT => '$(O_FILES)',
74767600 18 clean => {'FILES' => 'dbu libsdbm.a dbd dba dbe x-dbu *.dir *.pag'},
19 H => [qw(tune.h sdbm.h pair.h $(PERL_INC)/config.h)],
20 C => [qw(sdbm.c pair.c hash.c)]
42793c05
TB
21);
22
b2b3adea 23sub MY::constants {
3a91618c
MS
24 package MY;
25 my $self = shift;
26
27 $self->{INST_STATIC} = 'libsdbm$(LIB_EXT)';
b2b3adea 28
3a91618c 29 return $self->SUPER::constants();
137443ea 30}
42793c05
TB
31
32sub MY::top_targets {
ffea5178 33 my $r = '
42793c05 34all :: static
3a91618c 35 $(NOECHO) $(NOOP)
42793c05 36
42793c05 37config ::
3a91618c 38 $(NOECHO) $(NOOP)
42793c05
TB
39
40lint:
41 lint -abchx $(LIBSRCS)
02c45c47 42
ffea5178
DS
43';
44 $r .= '
02c45c47
GS
45# This is a workaround, the problem is that our old GNU make exports
46# variables into the environment so $(MYEXTLIB) is set in here to this
47# value which can not be built.
48sdbm/libsdbm.a:
3a91618c 49 $(NOECHO) $(NOOP)
ffea5178
DS
50' unless $^O eq 'VMS';
51
52 return $r;
42793c05 53}