diff options
Diffstat (limited to 'src/win32.mak')
-rw-r--r-- | src/win32.mak | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/src/win32.mak b/src/win32.mak index d7061dd3efa..ba8569fcbd9 100644 --- a/src/win32.mak +++ b/src/win32.mak @@ -1,8 +1,7 @@ -# $PostgreSQL: pgsql/src/win32.mak,v 1.14 2006/08/08 22:44:05 momjian Exp $ +# $PostgreSQL: pgsql/src/win32.mak,v 1.15 2007/03/05 14:18:38 mha Exp $ -# Makefile for Microsoft Visual C++ 5.0 (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 Visual C++ 6.0. +# (see src/tools/msvc for tools to build with Visual C++ 2005 and newer) !IF "$(OS)" == "Windows_NT" NULL= @@ -17,24 +16,12 @@ ALL: cd .. cd interfaces\libpq nmake /f win32.mak $(MAKEMACRO) - cd ..\..\bin\psql - nmake /f win32.mak $(MAKEMACRO) - cd ..\..\bin\pg_dump - nmake /f win32.mak $(MAKEMACRO) - cd ..\..\bin\pg_config - nmake /f win32.mak $(MAKEMACRO) cd ..\.. echo All Win32 parts have been built! CLEAN: cd interfaces\libpq nmake /f win32.mak CLEAN - cd ..\..\bin\psql - nmake /f win32.mak CLEAN - cd ..\..\bin\pg_dump - nmake /f win32.mak CLEAN - cd ..\..\bin\pg_config - nmake /f win32.mak CLEAN cd ..\.. echo All Win32 parts have been cleaned! |