summaryrefslogtreecommitdiff
path: root/src/tools/msvc/install.pl
blob: 993177ebc8b0303085a462927d887d39a229d603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# Script that provides 'make install' functionality for msvc builds
#
# $PostgreSQL$
#
use strict;
use warnings;

use Install qw(Install);

my $target = shift || Usage();
Install($target);

sub Usage
{
    print "Usage: install.pl <targetdir>\n";
    exit(1);
}