diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-08-22 18:30:59 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-08-25 23:21:27 -0600 |
commit | 81e983c1d8b2121661fa6b83ccb460ab2a8a4e02 (patch) | |
tree | 894514b19c57a5bb422c9c703b3e2736a61ff9e3 /ext | |
parent | fc4f706d6d37bab8cda71cc69183591cb1a9a2e4 (diff) | |
download | perl-81e983c1d8b2121661fa6b83ccb460ab2a8a4e02.tar.gz |
Add empty inline_invlist.c
This will be used for things need to handle inversion lists in the three
files that currently use them. I'm putting this in a separate hdr,
because inversion lists are very internal-only, so should not be grouped
in with things that there is an external API for. It is a dot-c file so
that the functions can continue to be declared with embed.fnc, and
porting/args_assert.t will continue to work, as it looks only in .c
files.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/re/Makefile.PL | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ext/re/Makefile.PL b/ext/re/Makefile.PL index a9733528c1..c6338c7ea2 100644 --- a/ext/re/Makefile.PL +++ b/ext/re/Makefile.PL @@ -25,24 +25,29 @@ sub postamble { my $regcomp_c = upupfile('regcomp.c'); my $regexec_c = upupfile('regexec.c'); my $dquote_static_c = upupfile('dquote_static.c'); + my $inline_invlist_c = upupfile('inline_invlist.c'); <<EOF; re_comp.c : $regcomp_c - \$(RM_F) re_comp.c \$(CP) $regcomp_c re_comp.c -re_comp\$(OBJ_EXT) : re_comp.c dquote_static.c +re_comp\$(OBJ_EXT) : re_comp.c dquote_static.c inline_invlist.c re_exec.c : $regexec_c - \$(RM_F) re_exec.c \$(CP) $regexec_c re_exec.c -re_exec\$(OBJ_EXT) : re_exec.c +re_exec\$(OBJ_EXT) : re_exec.c inline_invlist.c dquote_static.c : $dquote_static_c - \$(RM_F) dquote_static.c \$(CP) $dquote_static_c dquote_static.c +inline_invlist.c : $inline_invlist_c + - \$(RM_F) inline_invlist.c + \$(CP) $inline_invlist_c inline_invlist.c + EOF } |