Change return values for GEOSWKBWriter_getIncludeSRID_r to match function signature.
[geos.git] / makefile.vc
blobcbb08b74b7b0d5fb3eec797fcc516a8298a0788d
1 # $Id$\r
2 #\r
3 # NMAKE Makefile to build GEOS on Windows\r
4 #\r
5 # This makefile.vc delegates making targets to source\makefile.vc\r
6 # so it's just a thin wrapper.\r
7 #\r
8 #       Building on Win32 with Visual Studio\r
9 #       ------------------------------------\r
10 #\r
11 # 1) Requires Visual C++ 2002 or later\r
12 # 2) Build running command "nmake /f makefile.vc" in top-level directory\r
13 #\r
14 # Produces:\r
15 #  source\geos.dll: DLL - only exports the C API\r
16 #  source\geos_i.lib: Stub library to link against for use of geos.dll. \r
17 #  source\geos.lib: static library for use of C or C++ API.\r
18 #\r
19 MAKE = nmake\r
20 RM = -del\r
22 default:    source_dir\r
24 source_dir:\r
25         cd source\r
26         $(MAKE) /f makefile.vc\r
27         cd ..\r
29 clean:  \r
30         cd source\r
31         $(MAKE) /f makefile.vc clean\r
32         cd ..\r