This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Regen Configure and Glossary once again.
[perl5.git] / ext / DynaLoader / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile(
4     NAME => 'DynaLoader',
5     LINKTYPE    => 'static',
6     DEFINE      => '-DPERL_CORE -DLIBC="$(LIBC)"',
7     MAN3PODS    => {},  # Pods will be built by installman.
8     SKIP        => [qw(dynamic dynamic_lib dynamic_bs)],
9     XSPROTOARG => '-noprototypes',              # XXX remove later?
10     VERSION_FROM => 'DynaLoader_pm.PL',
11     PL_FILES    => {'DynaLoader_pm.PL'=>'DynaLoader.pm'},
12     PM          => {'DynaLoader.pm' => '$(INST_LIBDIR)/DynaLoader.pm'},
13     clean       => {FILES => 'DynaLoader.c DynaLoader.xs DynaLoader.pm'},
14 );
15
16 sub MY::postamble {
17         '
18 DynaLoader.xs: $(DLSRC)
19         $(CP) $? $@
20
21 # Perform very simple tests just to check for major gaffs.
22 # We can\'t do much more for platforms we are not executing on.
23 test-xs:
24         for i in dl_*xs; \
25             do $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSUBPPARGS) $$i > /dev/null; \
26         done
27 ';
28 }
29