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); }