# $Id$
# Copyright (c) 1997 Lunatech Research / Bart Schuller <schuller@lunatech.com>
# See the file "Artistic" in the distribution for licensing and
# (lack of) warranties

my @programs_to_install = qw(idl2perl cope-ns cope-announcer irserv_jacorb);

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'COPE',
    'VERSION'   => '0.062',
    'PL_FILES'  => { map {("bin/$_.PL" => "bin/$_")} @programs_to_install },
    'EXE_FILES' => [ map {"bin/$_"} @programs_to_install ],
    'clean'     => { FILES => '$(EXE_FILES)' },
    'dist'      => {'COMPRESS' => 'gzip -9f', 'SUFFIX' => 'gz',},
    'LIBS'	=> [''],   # e.g., '-lm'
    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING'
    'INC'	=> '',     # e.g., '-I/usr/include/other'
    'PREREQ_PM' => {
        'vars'             => 0,
        'strict'           => 0,
        'IO::Handle'       => 0,
        'Log::Log4perl'    => 0,
        'Socket'           => 0,
        'base'             => 0,
        'fields'           => 0,
        'subs'             => 0,
        'IO::Socket'       => 0,
        'Sys::Hostname'    => 0,
        'Net::Domain'      => 0,
        'POSIX'            => 0,
        'Math::BigInt'     => 0,
        'integer'          => 0,
        'Carp'             => 0,
        'Data::Dumper'     => 0,
        'Errno'            => 0,
        'Exporter'         => 0,
        'Module::Build'    => 0,    
        'Exception::Class::TCF' => 0.02,        
        'Log::Log4perl::JavaMap::ConsoleAppender' => 0,	
    },
);
