mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
19 lines
277 B
Perl
Executable File
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);
|
|
}
|