make CC.pm use a distinct CCPP() macro rather than PP()
[p5sagit/p5-mst-13.2.git] / ext / SDBM_File / sdbm / Makefile.PL
CommitLineData
42793c05 1use ExtUtils::MakeMaker;
137443ea 2
3$define = '-DSDBM -DDUFF';
9c293c15 4$define .= ' -DWIN32 -DPERL_STATIC_SYMS' if ($^O eq 'MSWin32');
137443ea 5
17f28c40 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 16 INST_ARCHLIB => '.',
17 SKIP => [qw(dynamic dynamic_lib dlsyms)],
18 OBJECT => '$(O_FILES)',
74767600 19 clean => {'FILES' => 'dbu libsdbm.a dbd dba dbe x-dbu *.dir *.pag'},
20 H => [qw(tune.h sdbm.h pair.h $(PERL_INC)/config.h)],
21 C => [qw(sdbm.c pair.c hash.c)]
42793c05 22);
23
b2b3adea 24sub MY::constants {
25 package MY;
26 my $r = shift->SUPER::constants();
27 if ($^O eq 'VMS') {
28 $r =~ s/^INST_STATIC =.*$/INST_STATIC = libsdbm\$(LIB_EXT)/m
29 }
30 return $r;
31}
32
137443ea 33sub MY::post_constants {
b2b3adea 34 package MY;
35 if ($^O eq 'VMS') {
36 shift->SUPER::post_constants();
37 } else {
137443ea 38'
39INST_STATIC = libsdbm$(LIB_EXT)
40'
b2b3adea 41 }
137443ea 42}
42793c05 43
44sub MY::top_targets {
ffea5178 45 my $r = '
42793c05 46all :: static
17f28c40 47 $(NOECHO) $(NOOP)
42793c05 48
42793c05 49config ::
17f28c40 50 $(NOECHO) $(NOOP)
42793c05 51
52lint:
53 lint -abchx $(LIBSRCS)
02c45c47 54
ffea5178 55';
56 $r .= '
02c45c47 57# This is a workaround, the problem is that our old GNU make exports
58# variables into the environment so $(MYEXTLIB) is set in here to this
59# value which can not be built.
60sdbm/libsdbm.a:
ffea5178 61 $(NOECHO) $(NOOP)
62' unless $^O eq 'VMS';
63
64 return $r;
42793c05 65}