File: Makefile.PL

package info (click to toggle)
psp 0.5.5-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 4,820 kB
  • ctags: 2,333
  • sloc: perl: 21,074; ansic: 4,553; sh: 2,407; makefile: 461; php: 11; pascal: 6
file content (41 lines) | stat: -rw-r--r-- 967 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
# -*- perl -*-
# Copyright (c) 2000, FundsXpress Financial Network, Inc.
# This library is free software released "AS IS WITH ALL FAULTS"
# and WITHOUT ANY WARRANTIES under the terms of the GNU Lesser
# General Public License, Version 2.1, a copy of which can be
# found in the "COPYING" file of this distribution.

# $Id: Makefile.PL,v 1.1.1.2 2003/12/06 19:47:27 hartmans Exp $

require 5.004;
use strict;
use ExtUtils::MakeMaker;

my @MODULES = qw(
  FieldSpace.pm
  Generic.pm
  Session.pm
  SideMenu.pm
  Error.pm
  Error/Field.pm
  Error/Group.pm
  Error/Verify.pm
  FieldSpace/Ephemeral.pm
  FieldSpace/Group.pm
  FieldSpace/Propagation.pm
  Parser/FieldSpace.pm
  Parser/Group.pm
  Parser/Message.pm
  Parser/PreScan.pm
  Parser/Table.pm
);

my %PM = map { $_ => '$(INST_LIBDIR)/PSP/'.$_ } @MODULES;

WriteMakefile(
    'NAME'    => 'PSP-Tools',
    'VERSION' => '0.504',
    'PM'      => \%PM,
    'dist'    => { COMPRESS => 'gzip -9f', SUFFIX => 'gz' }
);