Merge pull request #40 from jwillemsen/master
[MPC.git] / depgen.pl
blob4c54f8c9fe9b39a46f6517c89b03715403167c9a
1 #! /usr/bin/perl
2 eval '(exit $?0)' && eval 'exec perl -w -S $0 ${1+"$@"}'
3 & eval 'exec perl -w -S $0 $argv:q'
4 if 0;
6 # ************************************************************
7 # Description : Generate dependencies for Make and NMake.
8 # Author : Chad Elliott
9 # Create Date : 5/06/2002
11 # ************************************************************
13 # ************************************************************
14 # Pragma Section
15 # ************************************************************
17 use strict;
18 use FindBin;
19 use File::Spec;
20 use File::Basename;
22 my $basePath = $FindBin::Bin;
23 if ($^O eq 'VMS') {
24 $basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq '');
25 $basePath = VMS::Filespec::unixify($basePath);
27 unshift(@INC, $basePath . '/modules/Depgen', $basePath . '/modules');
29 require Driver;
31 # ************************************************************
32 # Main Section
33 # ************************************************************
35 my $driver = new Driver();
36 exit($driver->run(\@ARGV));