Commit | Line | Data |
---|---|---|
b050c948 AB |
1 | use ExtUtils::MakeMaker; |
2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence | |
3 | # the contents of the Makefile that is written. | |
4 | ||
b050c948 AB |
5 | WriteMakefile( |
6 | 'NAME' => 'threads::shared', | |
7 | 'VERSION_FROM' => 'shared.pm', # finds $VERSION | |
0db258a5 AB |
8 | 'PM' => { |
9 | 'shared.pm' => '$(INST_LIBDIR)/shared.pm', | |
10 | 'queue.pm' => '$(INST_LIBDIR)/shared/queue.pm', | |
11 | ||
12 | }, | |
b050c948 AB |
13 | 'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 |
14 | ($] >= 5.005 ? ## Add these new keywords supported since 5.005 | |
15 | (ABSTRACT_FROM => 'shared.pm', # retrieve abstract from module | |
16 | AUTHOR => 'Arthur Bergman <arthur@contiller.se>') : ()), | |
0665918f | 17 | 'MAN3PODS' => {}, # Pods will be built by installman |
b050c948 AB |
18 | 'LIBS' => [''], # e.g., '-lm' |
19 | 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' | |
20 | # Insert -I. if you add *.h files later: | |
21 | 'INC' => '', # e.g., '-I/usr/include/other' | |
22 | # Un-comment this if you add C files to link with later: | |
23 | # 'OBJECT' => '$(O_FILES)', # link all the C files too | |
24 | ||
25 | ); |