1 # Copyright (C) 2001-2006, Parrot Foundation.
6 config/init/headers.pm - Nongenerated Headers
10 Uses C<ExtUtils::Manifest> to find the C header files that are
11 distributed with Parrot.
15 package init
::headers
;
21 use base
qw(Parrot::Configure::Step);
23 use Parrot
::Configure
::Step
;
24 use ExtUtils
::Manifest
qw(maniread);
29 $data{description
} = q{Find header files distributed with Parrot};
35 my ( $self, $conf ) = @_;
37 my $inc = 'include/parrot';
41 map { m{^$inc/(.*\.h)\z} }
45 $_ = "\$(INC_DIR)/$_" for @headers;
46 my $TEMP_nongen_headers = join( "\\\n ", @headers );
50 TEMP_nongen_headers
=> $TEMP_nongen_headers,
60 # cperl-indent-level: 4
63 # vim: expandtab shiftwidth=4: