1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00
Files
postgres/src/tools/msvc/install.pl
2010-09-20 22:08:53 +02:00

19 lines
277 B
Perl
Executable File

#
# Script that provides 'make install' functionality for msvc builds
#
# src/tools/msvc/install.pl
#
use strict;
use warnings;
use Install qw(Install);
my $target = shift || Usage();
Install($target);
sub Usage
{
print "Usage: install.pl <targetdir>\n";
exit(1);
}