Regnerate geos wrapper with correct version for this branch
[geos.git] / makefile.vc
blob37262a3f3b0579c3c5c7118bba44c082f7965320
1 #\r
2 # NMAKE Makefile to build GEOS on Windows\r
3 ###############################################################################\r
4 # This makefile.vc delegates making targets to src\makefile.vc\r
5 # so it's just a thin wrapper.\r
6 #\r
7 #       Building on Win32 with Visual Studio\r
8 #       ------------------------------------\r
9 #\r
10 # 1) Requires Visual C++ 2002 or later\r
11 # 2) Build running command "nmake /f makefile.vc" in top-level directory\r
12 #\r
13 # Produces:\r
14 #  src\geos.dll: DLL - only exports the C API\r
15 #  src\geos_i.lib: Stub library to link against for use of geos.dll. \r
16 #  src\geos.lib: static library for use of C or C++ API.\r
17 ###############################################################################\r
18 GEOS_ROOT=.\r
19 !INCLUDE $(GEOS_ROOT)\nmake.opt\r
21 default: src_dir\r
23 src_dir:\r
24         cd src\r
25         $(MAKE) /f makefile.vc\r
26         cd ..\r
28 clean:  \r
29         cd src\r
30         $(MAKE) /f makefile.vc clean\r
31         cd ..\r