## This -*- perl -*- script writes the Makefile for Win32::Autoglob # You should read "perldoc perlmodinstall" for instructions on # how to install modules like this. require 5.004; use strict; use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Win32::Autoglob', 'VERSION_FROM' => 'Autoglob.pm', # finds $VERSION 'dist'=> { COMPRESS => 'gzip -6f', SUFFIX => 'gz', }, # And Win32::Autoglob has no module pre-requisites ); # generated by Makepmdist v1.01 sub libscan { # Determine what shouldn't get installed my($self, $path) = @_; return '' if $path =~ m/~/; return $path; } __END__