|
1 | | -# $PostgreSQL: pgsql/src/bcc32.mak,v 1.4 2006/10/0618:53:53 tgl Exp $ |
| 1 | +# $PostgreSQL: pgsql/src/bcc32.mak,v 1.5 2007/03/05 14:18:38 mha Exp $ |
2 | 2 |
|
3 | 3 | # Makefile for Borland C++ 5.5 (or compat) |
4 | | -# Top-file makefile for Win32 parts of postgresql. |
5 | | -# Note that most parts are not ported to Win32! |
| 4 | +# Top-file makefile for building Win32 libpq with Borland C++. |
6 | 5 |
|
7 | 6 | !IF "$(CFG)" != "Release" && "$(CFG)" != "Debug" |
8 | 7 | !MESSAGE Invalid configuration "$(CFG)" specified. |
|
13 | 12 | !MESSAGE |
14 | 13 | !MESSAGEPossiblechoicesforconfigurationare: |
15 | 14 | !MESSAGE |
16 | | -!MESSAGE "Release" (Win32 Release) |
| 15 | +!MESSAGE "Release" (Win32 Release) |
17 | 16 | !MESSAGE "Debug" (Win32 Debug) |
18 | 17 | !MESSAGE |
19 | 18 | !ENDIF |
|
31 | 30 | cd .. |
32 | 31 | cd interfaces\libpq |
33 | 32 | make -N -DCFG=$(CFG) /f bcc32.mak |
34 | | - cd ..\..\bin\psql |
35 | | - make -N -DCFG=$(CFG) /f bcc32.mak |
36 | 33 | cd ..\.. |
37 | 34 | echo All Win32 parts have been built! |
38 | 35 |
|
39 | 36 | CLEAN: |
40 | 37 | cd interfaces\libpq |
41 | 38 | make -N -DCFG=Release /f bcc32.mak CLEAN |
42 | 39 | make -N -DCFG=Debug /f bcc32.mak CLEAN |
43 | | - cd ..\..\bin\psql |
44 | | - make -N -DCFG=Release /f bcc32.mak CLEAN |
45 | | - make -N -DCFG=Debug /f bcc32.mak CLEAN |
46 | 40 | cd ..\.. |
47 | 41 | echo All Win32 parts have been cleaned! |
48 | 42 |
|
|