1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4
5#Changes: in 1.04, changed MM::needs to MY::needs. (oops!)
6
7WriteMakefile(
8    'NAME'	=> 'Religion',
9    'VERSION'	=> '1.04',
10    'LIBS'	=> [''],   # e.g., '-lm'
11    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING'
12    'INC'	=> '',     # e.g., '-I/usr/include/other'
13    #'INST_BOOT' => '',
14    #'INST_DYNAMIC' => '',
15    #'INST_STATIC' => '',
16
17    #'XS'	=> '',
18    #'LDFROM' => '',
19    #'OBJECT' => '',
20   # 'PM' => { "Religion.pm" => "\$(INST_LIB)/Religion.pm" },
21);
22
23
24sub MY::needs_linking {
25        return 0;
26}
27
28