blob: fbfc35048ae412936e6d721f54753cff9427dbbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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 ..\..
echo All Win32 parts have been built!
|