Add cvs tags to msvc build files, along with a (very short) comment about
authorMagnus Hagander <magnus@hagander.net>
Sat, 17 Mar 2007 14:01:01 +0000 (14:01 +0000)
committerMagnus Hagander <magnus@hagander.net>
Sat, 17 Mar 2007 14:01:01 +0000 (14:01 +0000)
what each script does.

13 files changed:
src/tools/msvc/Install.pm
src/tools/msvc/Mkvcbuild.pm
src/tools/msvc/Project.pm
src/tools/msvc/Solution.pm
src/tools/msvc/build.bat
src/tools/msvc/builddoc.bat
src/tools/msvc/clean.bat
src/tools/msvc/gendef.pl
src/tools/msvc/install.pl
src/tools/msvc/mkvcbuild.pl
src/tools/msvc/pgbison.bat
src/tools/msvc/pgflex.bat
src/tools/msvc/vcregress.bat

index 0b7a9b1983fef4e530f132f70c1e77291dbdef6e..5d9ba3746a5ea47bddae321a33b8b4d8250a4923 100644 (file)
@@ -1,5 +1,9 @@
 package Install;
-
+#
+# Package that provides 'make install' functionality for msvc builds
+#
+# $PostgreSQL$
+#
 use strict;
 use warnings;
 use Carp;
index 84d5889ddda5566283d95e070f785013582ebf7b..8eded8b930616702156e46251bd5a72cac5a29e5 100644 (file)
@@ -1,5 +1,9 @@
 package Mkvcbuild;
-
+#
+# Package that generates build files for msvc build
+#
+# $PostgreSQL$
+#
 use Carp;
 use Win32;
 use strict;
index 2ddf9e5d0c8c3f0ba33969edfcabcde2fdc4ed73..a13ea456b291f2229c4b486f439702e72b08c47d 100644 (file)
@@ -1,5 +1,9 @@
 package Project;
-
+#
+# Package that encapsulates a Visual C++ project file generation
+#
+# $PostgreSQL$
+#
 use Carp;
 use strict;
 use warnings;
index f6699c857f2c33edf350ca02cdd5d3033882dd65..ff0bbe3e1525c935cc564b4e4dc84a688e882d14 100644 (file)
@@ -1,4 +1,9 @@
 package Solution;
+#
+# Package that encapsulates a Visual C++ solution file generation
+# 
+# $PostgreSQL$
+#
 use Carp;
 use strict;
 use warnings;
index 4f586b69a02ca4c4a7a9fe7b1544f550fdc02d0a..08c10bdb53d0b2a30e07686c3aa23ebc2ccd204f 100755 (executable)
@@ -1,4 +1,6 @@
 @echo off
+REM $PostgreSQL$
+
 SETLOCAL
 SET STARTDIR=%CD%
 if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat
index eee04060a765b0ea18fa3b7403fc68257209596a..04d490e0aa099208c9e5d72e04ebe6b749874adf 100755 (executable)
@@ -1,6 +1,8 @@
 @echo off
 REM Adjust path for your docbook installation in buildenv.bat
 
+REM $PostgreSQL$
+
 SETLOCAL
 SET STARTDIR=%CD%
 SET OPENJADE=openjade-1.3.1
index 08c195429c52235718da79f3cce6be633d363028..5726abefc17d05e8452d80f35b6671ea44dab4fb 100755 (executable)
@@ -1,4 +1,5 @@
 @echo off
+REM $PostgreSQL$
 
 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
\ No newline at end of file
+goto :eof
index b9d4a20397b1da64f65c5bb7a0b18ae8eeb30905..d1f9bc04d6cfee2cb2c04d22a9022cc6350fcb99 100644 (file)
@@ -1,4 +1,9 @@
 my @def;
+#
+# Script that generates a .DEF file for all objects in a directory
+# 
+# $PostgreSQL$
+#
 
 die "Usage: gendef.pl <modulepath>\n" unless ($ARGV[0] =~ /\\([^\\]+$)/);
 my $defname = uc $1;
index 4d7053f52d2fcba923eda7cbff647d93c22bbeb0..993177ebc8b0303085a462927d887d39a229d603 100755 (executable)
@@ -1,3 +1,8 @@
+#
+# Script that provides 'make install' functionality for msvc builds
+#
+# $PostgreSQL$
+#
 use strict;
 use warnings;
 
index e8d9922f3027af7cc8b8ccc4d3ffc4eb32739487..4d495da5f144d40e57bb5236d24ac79254b1c789 100644 (file)
@@ -1,3 +1,9 @@
+#
+# Script that parses Unix style build environment and generates build files
+# for building with Visual Studio.
+#
+# $PostgreSQL$
+#
 use strict;
 use warnings;
 
index c770d0fffc607d410200cf3b63607cc4d8712041..ca3580997f7dab6ecc2e10695a3c960a8e44cb3a 100755 (executable)
@@ -1,4 +1,6 @@
 @echo off
+REM $PostgreSQL$
+
 if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat
 
 SET BV=
index 17ea4ff6e25c3e16576e625d51737b5c5cf85030..709f9aaa62b82a43e29b51ffa557453d5206b1a9 100755 (executable)
@@ -1,4 +1,6 @@
 @echo off
+REM $PostgreSQL$
+
 if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat
 
 flex -V > NUL
index af714835669e91ef7c8742117c89575d6e06a6bb..fad2de5da0665cec1c3441ec1683d070fc6d09c7 100644 (file)
@@ -1,4 +1,6 @@
 @echo off
+REM $PostgreSQL$
+
 SETLOCAL
 SET STARTDIR=%CD%
 if exist ..\..\..\src\tools\msvc\vcregress.bat cd ..\..\..