summaryrefslogtreecommitdiff
path: root/src/win32.mak
diff options
context:
space:
mode:
authorBruce Momjian2005-06-14 17:50:38 +0000
committerBruce Momjian2005-06-14 17:50:38 +0000
commitf04c39402a5a0332924e893ff8d8c27cb32dbec2 (patch)
tree7de939c17c1d95297fbf59bcedd340833ac0f3d6 /src/win32.mak
parent954f6bcffe215cbcb09f06aabf155586e6059172 (diff)
Attached is a makefile I hacked up to build pg_config under MSVC - the
reason is that it's required (more or less) in order to build the latest DBD::Pg code and I was testing that out under MSVC. Andrew Dunstan
Diffstat (limited to 'src/win32.mak')
-rw-r--r--src/win32.mak6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/win32.mak b/src/win32.mak
index 69aef55aab4..5a69de50a2c 100644
--- a/src/win32.mak
+++ b/src/win32.mak
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/src/win32.mak,v 1.9 2003/11/29 19:51:39 pgsql Exp $
+# $PostgreSQL: pgsql/src/win32.mak,v 1.10 2005/06/14 17:50:37 momjian Exp $
# Makefile for Microsoft Visual C++ 5.0 (or compat)
# Top-file makefile for Win32 parts of postgresql.
@@ -18,6 +18,8 @@ ALL:
nmake /f win32.mak $(MAKEMACRO)
cd ..\..\bin\psql
nmake /f win32.mak $(MAKEMACRO)
+ cd ..\..\bin\pg_config
+ nmake /f win32.mak $(MAKEMACRO)
cd ..\..
echo All Win32 parts have been built!
@@ -26,6 +28,8 @@ CLEAN:
nmake /f win32.mak CLEAN
cd ..\..\bin\psql
nmake /f win32.mak CLEAN
+ cd ..\..\bin\pg_config
+ nmake /f win32.mak CLEAN
cd ..\..
echo All Win32 parts have been cleaned!