]> granicus.if.org Git - postgresql/blob - src/win32.mak
Pass shared memory address on command line to exec'ed backend.
[postgresql] / src / win32.mak
1 # $Header: /cvsroot/pgsql/src/win32.mak,v 1.8 2002/09/03 21:45:41 petere Exp $
2
3 # Makefile for Microsoft Visual C++ 5.0 (or compat)
4 # Top-file makefile for Win32 parts of postgresql.
5 # Note that most parts are not ported to Win32!
6
7 !IF "$(OS)" == "Windows_NT"
8 NULL=
9 !ELSE 
10 NULL=nul
11 !ENDIF 
12
13 ALL: 
14    cd include
15    if not exist pg_config.h copy pg_config.h.win32 pg_config.h
16    cd ..
17    cd interfaces\libpq
18    nmake /f win32.mak $(MAKEMACRO)
19    cd ..\..\bin\psql
20    nmake /f win32.mak $(MAKEMACRO)
21    cd ..\..
22    echo All Win32 parts have been built!
23
24 CLEAN:
25    cd interfaces\libpq
26    nmake /f win32.mak CLEAN
27    cd ..\..\bin\psql
28    nmake /f win32.mak CLEAN
29    cd ..\..
30    echo All Win32 parts have been cleaned!
31
32 DISTCLEAN: CLEAN
33    cd include
34    del config.h
35    cd ..