postgresql/src/tools/msvc/install.pl

19 lines
271 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();
Install($target);
2006-11-29 20:49:31 +01:00
sub Usage
{
print "Usage: install.pl <targetdir>\n";
exit(1);
2006-11-29 20:49:31 +01:00
}