repo.or.cz
/
PostgreSQL.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix a few errors in comments. Patch by Fujii Masao, plus the one in
[PostgreSQL.git]
/
src
/
tools
/
msvc
/
install.pl
blob
993177ebc8b0303085a462927d887d39a229d603
1
#
2
# Script that provides 'make install' functionality for msvc builds
3
#
4
# $PostgreSQL$
5
#
6
use
strict
;
7
use
warnings
;
8
9
use
Install
qw(Install)
;
10
11
my
$target
=
shift
||
Usage
();
12
Install
(
$target
);
13
14
sub
Usage
15
{
16
print
"Usage: install.pl <targetdir>
\n
"
;
17
exit
(
1
);
18
}