aboutsummaryrefslogtreecommitdiff
path: root/src/win32.mak
blob: 48edd8e33d541b3a15fa3942334d31765ce3fcdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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!

!IF "$(OS)" == "Windows_NT"
NULL=
!ELSE 
NULL=nul
!ENDIF 

ALL: 
   cd interfaces\libpq
   nmake /f win32.mak
   cd ..\..\bin\psql
   nmake /f win32.mak
   cd ..\..
   echo All Win32 parts have been built!