File tree Expand file tree Collapse file tree 13 files changed +48
-4
lines changed Expand file tree Collapse file tree 13 files changed +48
-4
lines changed Original file line number Diff line number Diff line change 1
1
package Install ;
2
-
2
+ #
3
+ # Package that provides 'make install' functionality for msvc builds
4
+ #
5
+ # $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.2 2007/03/17 14:01:01 mha Exp $
6
+ #
3
7
use strict;
4
8
use warnings;
5
9
use Carp;
Original file line number Diff line number Diff line change 1
1
package Mkvcbuild ;
2
-
2
+ #
3
+ # Package that generates build files for msvc build
4
+ #
5
+ # $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.2 2007/03/17 14:01:01 mha Exp $
6
+ #
3
7
use Carp;
4
8
use Win32;
5
9
use strict;
Original file line number Diff line number Diff line change 1
1
package Project ;
2
-
2
+ #
3
+ # Package that encapsulates a Visual C++ project file generation
4
+ #
5
+ # $PostgreSQL: pgsql/src/tools/msvc/Project.pm,v 1.10 2007/03/17 14:01:01 mha Exp $
6
+ #
3
7
use Carp;
4
8
use strict;
5
9
use warnings;
Original file line number Diff line number Diff line change 1
1
package Solution ;
2
+ #
3
+ # Package that encapsulates a Visual C++ solution file generation
4
+ #
5
+ # $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.17 2007/03/17 14:01:01 mha Exp $
6
+ #
2
7
use Carp;
3
8
use strict;
4
9
use warnings;
Original file line number Diff line number Diff line change 1
1
@ echo off
2
+ REM $PostgreSQL: pgsql/src/tools/msvc/build.bat,v 1.7 2007/03/17 14:01:01 mha Exp $
3
+
2
4
SETLOCAL
3
5
SET STARTDIR = %CD%
4
6
if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat
Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
REM Adjust path for your docbook installation in buildenv.bat
3
3
4
+ REM $PostgreSQL: pgsql/src/tools/msvc/builddoc.bat,v 1.5 2007/03/17 14:01:01 mha Exp $
5
+
4
6
SETLOCAL
5
7
SET STARTDIR = %CD%
6
8
SET OPENJADE = openjade-1.3.1
Original file line number Diff line number Diff line change 1
1
@ echo off
2
+ REM $PostgreSQL: pgsql/src/tools/msvc/clean.bat,v 1.3 2007/03/17 14:01:01 mha Exp $
2
3
3
4
set D = %CD%
4
5
if exist ..\msvc if exist ..\..\..\src cd ..\..\..
@@ -56,4 +57,4 @@ goto :eof
56
57
57
58
:del
58
59
if exist %1 del /q %1
59
- goto :eof
60
+ goto :eof
Original file line number Diff line number Diff line change 1
1
my @def ;
2
+ #
3
+ # Script that generates a .DEF file for all objects in a directory
4
+ #
5
+ # $PostgreSQL: pgsql/src/tools/msvc/gendef.pl,v 1.5 2007/03/17 14:01:01 mha Exp $
6
+ #
2
7
3
8
die " Usage: gendef.pl <modulepath>\n " unless ($ARGV [0] =~ / \\ ([^\\ ]+$) / );
4
9
my $defname = uc $1 ;
Original file line number Diff line number Diff line change
1
+ #
2
+ # Script that provides 'make install' functionality for msvc builds
3
+ #
4
+ # $PostgreSQL: pgsql/src/tools/msvc/install.pl,v 1.7 2007/03/17 14:01:01 mha Exp $
5
+ #
1
6
use strict;
2
7
use warnings;
3
8
Original file line number Diff line number Diff line change
1
+ #
2
+ # Script that parses Unix style build environment and generates build files
3
+ # for building with Visual Studio.
4
+ #
5
+ # $PostgreSQL: pgsql/src/tools/msvc/mkvcbuild.pl,v 1.18 2007/03/17 14:01:01 mha Exp $
6
+ #
1
7
use strict;
2
8
use warnings;
3
9
Original file line number Diff line number Diff line change 1
1
@ echo off
2
+ REM $PostgreSQL: pgsql/src/tools/msvc/pgbison.bat,v 1.5 2007/03/17 14:01:01 mha Exp $
3
+
2
4
if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat
3
5
4
6
SET BV =
Original file line number Diff line number Diff line change 1
1
@ echo off
2
+ REM $PostgreSQL: pgsql/src/tools/msvc/pgflex.bat,v 1.4 2007/03/17 14:01:01 mha Exp $
3
+
2
4
if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat
3
5
4
6
flex -V > NUL
Original file line number Diff line number Diff line change 1
1
@ echo off
2
+ REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.3 2007/03/17 14:01:01 mha Exp $
3
+
2
4
SETLOCAL
3
5
SET STARTDIR = %CD%
4
6
if exist ..\..\..\src\tools\msvc\vcregress.bat cd ..\..\..
You can’t perform that action at this time.
0 commit comments