ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Event/Makefile.PL
Revision: 1.6
Committed: Sat Nov 4 01:31:57 2006 UTC (17 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.5: +0 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2 root 1.2 use Event::MakeMaker;
3 root 1.1
4     use 5.005;
5    
6     use Config;
7    
8     $|=1;
9    
10 root 1.2 WriteMakefile(Event::MakeMaker::event_args(
11 root 1.1 NAME => "Coro::Event",
12     VERSION_FROM => "Event.pm",
13     DEFINE => $DEFINE,
14     DIR => [],
15 root 1.5 PM => {
16     'Event.pm' => '$(INST_LIBDIR)/Event.pm',
17     'Handle.pm' => '$(INST_LIBDIR)/Handle.pm',
18     'Socket.pm' => '$(INST_LIBDIR)/Socket.pm',
19     'Select.pm' => '$(INST_LIBDIR)/Select.pm',
20     },
21 root 1.2 ));
22 root 1.1
23    
24