diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1998-07-06 18:24:33 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-08 05:12:07 +0000 |
commit | 569536030df0016c037f85e8e6d3ef93f000c47a (patch) | |
tree | d1c55b55d87930cbe99c41c1b950ab017ba1eaff /ext/re/Makefile.PL | |
parent | 735e0d5c42c27ff4648bbbb6a960bc17c7a17596 (diff) | |
download | perl-569536030df0016c037f85e8e6d3ef93f000c47a.tar.gz |
add patch for C<use re 'debug'>
Message-Id: <199807070224.WAA10318@monk.mps.ohio-state.edu>
Subject: Re: _70 and Devel::RE
p4raw-id: //depot/perl@1371
Diffstat (limited to 'ext/re/Makefile.PL')
-rw-r--r-- | ext/re/Makefile.PL | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ext/re/Makefile.PL b/ext/re/Makefile.PL new file mode 100644 index 0000000000..c6a55a6f44 --- /dev/null +++ b/ext/re/Makefile.PL @@ -0,0 +1,22 @@ +use ExtUtils::MakeMaker; +WriteMakefile( + NAME => 're', + VERSION_FROM => 're.pm', + MAN3PODS => ' ', # Pods will be built by installman. + XSPROTOARG => '-noprototypes', + OBJECT => 're_exec$(OBJ_EXT) re_comp$(OBJ_EXT) re$(OBJ_EXT)', + DEFINE => '-DDEBUGGING -DIN_XSUB_RE', +); + +sub MY::postamble { + return <<'EOF'; +re_comp.c: ../../regcomp.c + -$(RM) $@ + $(CP) ../../regcomp.c $@ + +re_exec.c: ../../regexec.c + -$(RM) $@ + $(CP) ../../regexec.c $@ + +EOF +} |