Last stab at sdbm/Makefile.PL
[p5sagit/p5-mst-13.2.git] / ext / SDBM_File / sdbm / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 my $define = '-DSDBM -DDUFF';
4 $define .= ' -DWIN32 -DPERL_STATIC_SYMS' if ($^O eq 'MSWin32');
5
6 if ($^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
11 WriteMakefile(
12     NAME      => 'sdbm', # (doesn't matter what the name is here) oh yes it does
13     LINKTYPE  => 'static',
14     DEFINE    => $define,
15     INC       => '-I$(PERL_INC)', # force PERL_INC dir ahead of system -I's
16     OBJECT    => '$(O_FILES)',
17     clean     => {'FILES' => 'dbu libsdbm.a dbd dba dbe x-dbu *.dir *.pag'},
18     H         => [qw(tune.h sdbm.h pair.h $(PERL_INC)/config.h)],
19     C         => [qw(sdbm.c pair.c hash.c)]
20 );
21
22
23 package MY;
24 sub constants {
25     my $self = shift;
26
27     $self->{INST_STATIC} = 'libsdbm$(LIB_EXT)';
28
29     return $self->SUPER::constants();
30 }
31
32 sub top_targets {
33     my $self = shift;
34     my $r = '
35 all :: static
36         $(NOECHO) $(NOOP)
37
38 lint:
39         lint -abchx $(LIBSRCS)
40
41 ';
42     $r .= '
43 # This is a workaround, the problem is that our old GNU make exports
44 # variables into the environment so $(MYEXTLIB) is set in here to this
45 # value which can not be built.
46 sdbm/libsdbm.a:
47         $(NOECHO) $(NOOP)
48 ' unless $^O eq 'VMS';
49
50     return $r . $self->SUPER::top_targets;
51 }