|
Revision 24514, 492 bytes
(checked in by daisuke, 4 years ago)
|
|
convenience targets
|
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | use strict; |
|---|
| 2 | use inc::Module::Install; |
|---|
| 3 | |
|---|
| 4 | name('DateTime-Lite'); |
|---|
| 5 | all_From('lib/DateTime/Lite.pm'); |
|---|
| 6 | |
|---|
| 7 | my $postamble = <<'EOM'; |
|---|
| 8 | timezone: |
|---|
| 9 | $(NOECHO)$(FULLPERLRUN) tools/timezone/update-timezones.pl |
|---|
| 10 | |
|---|
| 11 | benchmark: pure_all |
|---|
| 12 | $(NOECHO)$(FULLPERLRUN) -Mblib tools/benchmark/simple_create.pl |
|---|
| 13 | |
|---|
| 14 | profile: pure_all |
|---|
| 15 | $(NOECHO)$(FULLPERLRUN) -Mblib tools/profile/simple_create.pl |
|---|
| 16 | |
|---|
| 17 | EOM |
|---|
| 18 | postamble $postamble; |
|---|
| 19 | |
|---|
| 20 | tests 't/*.t t/*/*.t'; |
|---|
| 21 | requires 'SelfLoader'; |
|---|
| 22 | WriteAll; |
|---|
| 23 | |
|---|
| 24 | # TODO: Ask the user which timezones they want. |
|---|