2 eval '(exit $?0)' && eval 'exec perl -w -S $0 ${1+"$@"}'
3 & eval 'exec perl -w -S $0 $argv:q'
6 # ************************************************************
7 # Description : Generate dependencies for Make and NMake.
8 # Author : Chad Elliott
9 # Create Date : 5/06/2002
11 # ************************************************************
13 # ************************************************************
15 # ************************************************************
22 my $basePath = $FindBin::Bin
;
24 $basePath = File
::Spec
->rel2abs(dirname
($0)) if ($basePath eq '');
25 $basePath = VMS
::Filespec
::unixify
($basePath);
27 unshift(@INC, $basePath . '/modules/Depgen', $basePath . '/modules');
31 # ************************************************************
33 # ************************************************************
35 my $driver = new Driver
();
36 exit($driver->run(\
@ARGV));