summaryrefslogtreecommitdiff
path: root/src/win32.mak
diff options
context:
space:
mode:
Diffstat (limited to 'src/win32.mak')
-rw-r--r--src/win32.mak17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/win32.mak b/src/win32.mak
new file mode 100644
index 0000000000..fbfc35048a
--- /dev/null
+++ b/src/win32.mak
@@ -0,0 +1,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!