forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile.vc
31 lines (28 loc) · 877 Bytes
/
makefile.vc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# NMAKE Makefile to build GEOS on Windows
###############################################################################
# This makefile.vc delegates making targets to src\makefile.vc
# so it's just a thin wrapper.
#
# Building on Win32 with Visual Studio
# ------------------------------------
#
# 1) Requires Visual C++ 2002 or later
# 2) Build running command "nmake /f makefile.vc" in top-level directory
#
# Produces:
# src\geos.dll: DLL - only exports the C API
# src\geos_i.lib: Stub library to link against for use of geos.dll.
# src\geos.lib: static library for use of C or C++ API.
###############################################################################
GEOS_ROOT=.
!INCLUDE $(GEOS_ROOT)\nmake.opt
default: src_dir
src_dir:
cd src
$(MAKE) /f makefile.vc
cd ..
clean:
cd src
$(MAKE) /f makefile.vc clean
cd ..