File: Makefile.PL

package info (click to toggle)
horae 063-3
  • links: PTS
  • area: contrib
  • in suites: etch, etch-m68k
  • size: 23,964 kB
  • ctags: 4,939
  • sloc: perl: 101,791; ansic: 6,700; xml: 2,019; lisp: 744; sh: 81; makefile: 76
file content (47 lines) | stat: -rw-r--r-- 2,354 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use ExtUtils::MakeMaker;

## If this is being installed with Atoms of with Ifeffit, then
## $ENV{INSTALLING_WITH} will be set by Atoms' topmost Makefile.PL.
my $blib;
SWITCH : {
  $blib = "blib",       last SWITCH if (not $ENV{INSTALLING_WITH});
  $blib = "../blib",    last SWITCH if ($ENV{INSTALLING_WITH} eq 'atoms');
  $blib = "../blib",    last SWITCH if ($ENV{INSTALLING_WITH} eq 'horae');
  $blib = "../../blib", last SWITCH if ($ENV{INSTALLING_WITH} eq 'ifeffit');
};

WriteMakefile(
	      'NAME'    => 'HoraeAtp',
	      'VERSION' => '2004.01.14',
	      'PM' =>
	      {
	       'absorption.atp' => "$blib/lib/Xray/atp/absorption.atp",
	       'alchemy.atp'    => "$blib/lib/Xray/atp/alchemy.atp",
	       'atoms.atp'      => "$blib/lib/Xray/atp/atoms.atp",
	       'dafs.atp'       => "$blib/lib/Xray/atp/dafs.atp",
	       'dafs_ri.atp'    => "$blib/lib/Xray/atp/dafs_ri.atp",
	       'feff.atp'       => "$blib/lib/Xray/atp/feff.atp",
	       'feff6.atp'      => "$blib/lib/Xray/atp/feff6.atp",
	       'feff7.atp'      => "$blib/lib/Xray/atp/feff7.atp",
	       'feff8_exafs.atp'=> "$blib/lib/Xray/atp/feff8_exafs.atp",
	       'feff8.atp'      => "$blib/lib/Xray/atp/feff8.atp",
	       'formulas.atp'   => "$blib/lib/Xray/atp/formulas.atp",
	       'geom.atp'       => "$blib/lib/Xray/atp/geom.atp",
	       'gnxas_cry.atp'  => "$blib/lib/Xray/atp/gnxas_cry.atp",
	       'gnxas_sym.atp'  => "$blib/lib/Xray/atp/gnxas_sym.atp",
	       #mol#'molecule6.atp'  => "$blib/lib/Xray/atp/molecule6.atp",
	       #mol#'molecule8.atp'  => "$blib/lib/Xray/atp/molecule8.atp",
	       'p1.atp'         => "$blib/lib/Xray/atp/p1.atp",
	       'p1_cartesian.atp' => "$blib/lib/Xray/atp/p1_cartesian.atp",
	       'pdb.atp'        => "$blib/lib/Xray/atp/pdb.atp",
	       'powder.atp'     => "$blib/lib/Xray/atp/powder.atp",
	       'symmetry.atp'   => "$blib/lib/Xray/atp/symmetry.atp",
	       'template6.atp'  => "$blib/lib/Xray/atp/template6.atp",
	       'template7.atp'  => "$blib/lib/Xray/atp/template7.atp",
	       'template8_exafs.atp'  => "$blib/lib/Xray/atp/template8_exafs.atp",
	       'template8.atp'  => "$blib/lib/Xray/atp/template8.atp",
	       'test.atp'       => "$blib/lib/Xray/atp/test.atp",
	       'unit.atp'       => "$blib/lib/Xray/atp/unit.atp",
	       'xyz.atp'        => "$blib/lib/Xray/atp/xyz.atp",
	      },
	     );