postgresql/src/tools/msvc/install.pl

21 lines
350 B
Perl
Raw Normal View History

#
# Script that provides 'make install' functionality for msvc builds
#
2010-09-20 22:08:53 +02:00
# src/tools/msvc/install.pl
#
2006-11-29 20:49:31 +01:00
use strict;
use warnings;
use Install qw(Install);
2006-11-29 20:49:31 +01:00
my $target = shift || Usage();
my $insttype = shift;
Install($target, $insttype);
2006-11-29 20:49:31 +01:00
sub Usage
{
print "Usage: install.pl <targetdir> [installtype]\n";
print "installtype: client\n";
exit(1);
2006-11-29 20:49:31 +01:00
}