Commit 7bb40f9b authored by Magnus Hagander's avatar Magnus Hagander

Add cvs tags to msvc build files, along with a (very short) comment about

what each script does.
parent 4554ee36
package Install; package Install;
#
# Package that provides 'make install' functionality for msvc builds
#
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.2 2007/03/17 14:01:01 mha Exp $
#
use strict; use strict;
use warnings; use warnings;
use Carp; use Carp;
......
package Mkvcbuild; package Mkvcbuild;
#
# Package that generates build files for msvc build
#
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.2 2007/03/17 14:01:01 mha Exp $
#
use Carp; use Carp;
use Win32; use Win32;
use strict; use strict;
......
package Project; package Project;
#
# Package that encapsulates a Visual C++ project file generation
#
# $PostgreSQL: pgsql/src/tools/msvc/Project.pm,v 1.10 2007/03/17 14:01:01 mha Exp $
#
use Carp; use Carp;
use strict; use strict;
use warnings; use warnings;
......
package Solution; package Solution;
#
# Package that encapsulates a Visual C++ solution file generation
#
# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.17 2007/03/17 14:01:01 mha Exp $
#
use Carp; use Carp;
use strict; use strict;
use warnings; use warnings;
......
@echo off @echo off
REM $PostgreSQL: pgsql/src/tools/msvc/build.bat,v 1.7 2007/03/17 14:01:01 mha Exp $
SETLOCAL SETLOCAL
SET STARTDIR=%CD% SET STARTDIR=%CD%
if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat
......
@echo off @echo off
REM Adjust path for your docbook installation in buildenv.bat REM Adjust path for your docbook installation in buildenv.bat
REM $PostgreSQL: pgsql/src/tools/msvc/builddoc.bat,v 1.5 2007/03/17 14:01:01 mha Exp $
SETLOCAL SETLOCAL
SET STARTDIR=%CD% SET STARTDIR=%CD%
SET OPENJADE=openjade-1.3.1 SET OPENJADE=openjade-1.3.1
......
@echo off @echo off
REM $PostgreSQL: pgsql/src/tools/msvc/clean.bat,v 1.3 2007/03/17 14:01:01 mha Exp $
set D=%CD% set D=%CD%
if exist ..\msvc if exist ..\..\..\src cd ..\..\.. if exist ..\msvc if exist ..\..\..\src cd ..\..\..
......
my @def; my @def;
#
# Script that generates a .DEF file for all objects in a directory
#
# $PostgreSQL: pgsql/src/tools/msvc/gendef.pl,v 1.5 2007/03/17 14:01:01 mha Exp $
#
die "Usage: gendef.pl <modulepath>\n" unless ($ARGV[0] =~ /\\([^\\]+$)/); die "Usage: gendef.pl <modulepath>\n" unless ($ARGV[0] =~ /\\([^\\]+$)/);
my $defname = uc $1; my $defname = uc $1;
......
#
# Script that provides 'make install' functionality for msvc builds
#
# $PostgreSQL: pgsql/src/tools/msvc/install.pl,v 1.7 2007/03/17 14:01:01 mha Exp $
#
use strict; use strict;
use warnings; use warnings;
......
#
# Script that parses Unix style build environment and generates build files
# for building with Visual Studio.
#
# $PostgreSQL: pgsql/src/tools/msvc/mkvcbuild.pl,v 1.18 2007/03/17 14:01:01 mha Exp $
#
use strict; use strict;
use warnings; use warnings;
......
@echo off @echo off
REM $PostgreSQL: pgsql/src/tools/msvc/pgbison.bat,v 1.5 2007/03/17 14:01:01 mha Exp $
if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat
SET BV= SET BV=
......
@echo off @echo off
REM $PostgreSQL: pgsql/src/tools/msvc/pgflex.bat,v 1.4 2007/03/17 14:01:01 mha Exp $
if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat
flex -V > NUL flex -V > NUL
......
@echo off @echo off
REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.3 2007/03/17 14:01:01 mha Exp $
SETLOCAL SETLOCAL
SET STARTDIR=%CD% SET STARTDIR=%CD%
if exist ..\..\..\src\tools\msvc\vcregress.bat cd ..\..\.. if exist ..\..\..\src\tools\msvc\vcregress.bat cd ..\..\..
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment