]> granicus.if.org Git - postgresql/blob - src/tools/msvc/install.pl
Turn most vc build scripts into modules instead of scripts, and just have
[postgresql] / src / tools / msvc / install.pl
1 use strict;
2 use warnings;
3
4 use Install qw(Install);
5
6 my $target = shift || Usage();
7 Install($target);
8
9 sub Usage
10 {
11     print "Usage: install.pl <targetdir>\n";
12     exit(1);
13 }