aboutsummaryrefslogtreecommitdiff
path: root/src/makefile.vc
diff options
context:
space:
mode:
authorThomas Knudsen <busstoptaktik@users.noreply.github.com>2017-09-28 16:40:27 +0200
committerGitHub <noreply@github.com>2017-09-28 16:40:27 +0200
commit33e1c8e78f7bb826617f08f29e182b530d2ea153 (patch)
treed6e8c5bc78fa931cc25f4e56a08c5458f28d8755 /src/makefile.vc
parenta90a9ec5daa335b8b5eb6c93e4f5a0e48ca5656e (diff)
downloadPROJ-33e1c8e78f7bb826617f08f29e182b530d2ea153.tar.gz
PROJ-33e1c8e78f7bb826617f08f29e182b530d2ea153.zip
Introducing the cct 'Coordinate Conversion and Transformation' program (#574)
* Introducing the cct 'Coordinate Conversion and Transformation' program * cct: Add some rudimentary documentation * Removed documentation again, moving to a separate doc PR * Minor corrections in response to a review by @kbevers
Diffstat (limited to 'src/makefile.vc')
-rw-r--r--src/makefile.vc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/makefile.vc b/src/makefile.vc
index cc57d806..7ab0dfc7 100644
--- a/src/makefile.vc
+++ b/src/makefile.vc
@@ -70,11 +70,13 @@ LIBOBJ = $(support) $(pseudo) $(azimuthal) $(conic) $(cylinder) $(misc) \
PROJEXE_OBJ = proj.obj gen_cheb.obj p_series.obj emess.obj
CS2CSEXE_OBJ = cs2cs.obj gen_cheb.obj p_series.obj emess.obj
GEODEXE_OBJ = geod.obj geod_set.obj geod_interface.obj emess.obj
+CCTEXE_OBJ = cct.obj proj_strtod.obj
MULTISTRESSTEST_OBJ = multistresstest.obj
PROJ_DLL = proj$(VERSION).dll
PROJ_EXE = proj.exe
CS2CS_EXE = cs2cs.exe
GEOD_EXE = geod.exe
+CCT_EXE = cct.exe
NAD2BIN_EXE = nad2bin.exe
MULTISTRESSTEST_EXE = multistresstest.exe
@@ -83,7 +85,7 @@ CFLAGS = /nologo -I. -DPROJ_LIB=\"$(PROJ_LIB_DIR)\" \
default: all
-all: proj.lib $(PROJ_EXE) $(CS2CS_EXE) $(GEOD_EXE) $(NAD2BIN_EXE)
+all: proj.lib $(PROJ_EXE) $(CS2CS_EXE) $(GEOD_EXE) $(CCT_EXE) $(NAD2BIN_EXE)
proj.lib: $(LIBOBJ)
if exist proj.lib del proj.lib
@@ -108,6 +110,10 @@ $(GEOD_EXE): $(GEODEXE_OBJ) $(EXE_PROJ)
cl $(GEODEXE_OBJ) $(EXE_PROJ)
if exist $(GEOD_EXE).manifest mt -manifest $(GEOD_EXE).manifest -outputresource:$(GEOD_EXE);1
+$(CCT_EXE): $(CCTEXE_OBJ) $(EXE_PROJ)
+ cl $(CCTEXE_OBJ) $(EXE_PROJ)
+ if exist $(CCT_EXE).manifest mt -manifest $(CCT_EXE).manifest -outputresource:$(CCT_EXE);1
+
$(NAD2BIN_EXE): nad2bin.obj emess.obj $(EXE_PROJ)
cl nad2bin.obj emess.obj $(EXE_PROJ)