File: Makefile.PL

package info (click to toggle)
libparse-yapp-perl 1.21-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 492 kB
  • sloc: perl: 2,751; makefile: 2
file content (18 lines) | stat: -rwxr-xr-x 545 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'Parse::Yapp',
    # CORRELATION #py001: $VERSION must be changed in both Parse::Yapp & Parse::Yapp::Driver
    'VERSION_FROM' => 'lib/Parse/Yapp/Driver.pm',
	'EXE_FILES' => [ 'yapp' ],
);

sub MY::postamble {
<<'EOT';
YAPPPARSE = lib/Parse/Yapp/Parse.pm

$(YAPPPARSE) :: YappParse.yp
	$(PERL) -I./lib yapp -m 'Parse::Yapp::Parse' -o 'lib/Parse/Yapp/Parse.pm' YappParse.yp
EOT
}