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

what each script does.
This commit is contained in:
Magnus Hagander 2007-03-17 14:01:01 +00:00
parent 4554ee362c
commit 7bb40f9b82
13 changed files with 48 additions and 4 deletions

View File

@ -1,5 +1,9 @@
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 warnings;
use Carp;

View File

@ -1,5 +1,9 @@
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 Win32;
use strict;

View File

@ -1,5 +1,9 @@
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 strict;
use warnings;

View File

@ -1,4 +1,9 @@
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 strict;
use warnings;

View File

@ -1,4 +1,6 @@
@echo off
REM $PostgreSQL: pgsql/src/tools/msvc/build.bat,v 1.7 2007/03/17 14:01:01 mha Exp $
SETLOCAL
SET STARTDIR=%CD%
if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat

View File

@ -1,6 +1,8 @@
@echo off
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
SET STARTDIR=%CD%
SET OPENJADE=openjade-1.3.1

View File

@ -1,4 +1,5 @@
@echo off
REM $PostgreSQL: pgsql/src/tools/msvc/clean.bat,v 1.3 2007/03/17 14:01:01 mha Exp $
set D=%CD%
if exist ..\msvc if exist ..\..\..\src cd ..\..\..
@ -56,4 +57,4 @@ goto :eof
:del
if exist %1 del /q %1
goto :eof
goto :eof

View File

@ -1,4 +1,9 @@
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] =~ /\\([^\\]+$)/);
my $defname = uc $1;

View File

@ -1,3 +1,8 @@
#
# 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 warnings;

View File

@ -1,3 +1,9 @@
#
# 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 warnings;

View File

@ -1,4 +1,6 @@
@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
SET BV=

View File

@ -1,4 +1,6 @@
@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
flex -V > NUL

View File

@ -1,4 +1,6 @@
@echo off
REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.3 2007/03/17 14:01:01 mha Exp $
SETLOCAL
SET STARTDIR=%CD%
if exist ..\..\..\src\tools\msvc\vcregress.bat cd ..\..\..