package Dependancies; =head1 NAME Dependancies =head1 SYNOPSIS perl -MDependancies -c =head1 DESCRIPTION This module is used to see what the dependancies a script or module has at COMPILE time. =cut CHECK{ while (my($file,$location)=each(%INC)) { print "$file => $location\n"; } }; 1;