Prepare for RC4 release.
[geos.git] / makefile.vc
blobcab390c61c252c0a3824cf221340676c576f2bee
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 GEOS_ROOT=.\r
20 !INCLUDE $(GEOS_ROOT)\nmake.opt\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