summaryrefslogtreecommitdiff
path: root/src/bcc32.mak
diff options
context:
space:
mode:
authorMagnus Hagander2007-03-05 14:18:38 +0000
committerMagnus Hagander2007-03-05 14:18:38 +0000
commitef393e733e9c91f0534f27741fcbac42cd9912fc (patch)
tree771a538c639aa8946b6806460690ae66b5289139 /src/bcc32.mak
parente1d8deb918ea69bd0bc484367a0dc5129ec701e8 (diff)
Remove old-style win32 client-only visual c++ build infrastructure for everything except
libpq. We need to keep libpq to build static libraries and to use PQtrace with clients using older versions of MSVC.
Diffstat (limited to 'src/bcc32.mak')
-rw-r--r--src/bcc32.mak12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/bcc32.mak b/src/bcc32.mak
index 784ad68b0a..35aba705e6 100644
--- a/src/bcc32.mak
+++ b/src/bcc32.mak
@@ -1,8 +1,7 @@
-# $PostgreSQL: pgsql/src/bcc32.mak,v 1.4 2006/10/06 18:53:53 tgl Exp $
+# $PostgreSQL: pgsql/src/bcc32.mak,v 1.5 2007/03/05 14:18:38 mha Exp $
# Makefile for Borland C++ 5.5 (or compat)
-# Top-file makefile for Win32 parts of postgresql.
-# Note that most parts are not ported to Win32!
+# Top-file makefile for building Win32 libpq with Borland C++.
!IF "$(CFG)" != "Release" && "$(CFG)" != "Debug"
!MESSAGE Invalid configuration "$(CFG)" specified.
@@ -13,7 +12,7 @@
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
-!MESSAGE "Release" (Win32 Release )
+!MESSAGE "Release" (Win32 Release)
!MESSAGE "Debug" (Win32 Debug)
!MESSAGE
!ENDIF
@@ -31,8 +30,6 @@ ALL:
cd ..
cd interfaces\libpq
make -N -DCFG=$(CFG) /f bcc32.mak
- cd ..\..\bin\psql
- make -N -DCFG=$(CFG) /f bcc32.mak
cd ..\..
echo All Win32 parts have been built!
@@ -40,9 +37,6 @@ CLEAN:
cd interfaces\libpq
make -N -DCFG=Release /f bcc32.mak CLEAN
make -N -DCFG=Debug /f bcc32.mak CLEAN
- cd ..\..\bin\psql
- make -N -DCFG=Release /f bcc32.mak CLEAN
- make -N -DCFG=Debug /f bcc32.mak CLEAN
cd ..\..
echo All Win32 parts have been cleaned!