root/lang/perl/DateTime-Lite/trunk/Makefile.PL @ 24514

Revision 24514, 492 bytes (checked in by daisuke, 4 years ago)

convenience targets

  • Property svn:keywords set to Id
Line 
1use strict;
2use inc::Module::Install;
3
4name('DateTime-Lite');
5all_From('lib/DateTime/Lite.pm');
6
7my $postamble = <<'EOM';
8timezone:
9        $(NOECHO)$(FULLPERLRUN) tools/timezone/update-timezones.pl
10
11benchmark: pure_all
12        $(NOECHO)$(FULLPERLRUN) -Mblib tools/benchmark/simple_create.pl
13
14profile: pure_all
15        $(NOECHO)$(FULLPERLRUN) -Mblib tools/profile/simple_create.pl
16
17EOM
18postamble $postamble;
19
20tests 't/*.t t/*/*.t';
21requires 'SelfLoader';
22WriteAll;
23
24# TODO: Ask the user which timezones they want.
Note: See TracBrowser for help on using the browser.