1# $Id: Makefile.PL,v 1.2 1997-05-15 23:22:49-04 roderick Exp $
2#
3# Copyright (c) 1997 Roderick Schertler.  All rights reserved.  This
4# program is free software; you can redistribute it and/or modify it
5# under the same terms as Perl itself.
6
7use ExtUtils::MakeMaker;
8
9WriteMakefile(
10    NAME		=> 'IPC::Signal',
11    VERSION_FROM	=> 'Signal.pm',
12    dist		=> {
13    	COMPRESS 	=> 'gzip --best',
14    	DIST_CP		=> 'ln',
15    	PREOP		=> '$(MAKE) ci',
16    	SUFFIX		=> 'gz',
17    },
18);
19