From 44c8ed7067cdfdea5621c1de9ea07f8fcaf09593 Mon Sep 17 00:00:00 2001 From: Joe Mistachkin Date: Fri, 5 Jan 2018 17:40:38 +0000 Subject: [PATCH] In the Makefile for MSVC, the default target should not include binaries that link against the Tcl library. --- Makefile.msc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile.msc b/Makefile.msc index f1d43c22c4..f485e37ca1 100644 --- a/Makefile.msc +++ b/Makefile.msc @@ -1636,7 +1636,15 @@ ALL_TCL_TARGETS = # This is the default Makefile target. The objects listed here # are what get build when you type just "make" with no arguments. # -all: dll libsqlite3.lib shell $(ALL_TCL_TARGETS) +core: dll libsqlite3.lib shell + +# Targets that require the Tcl library. +# +tcl: $(ALL_TCL_TARGETS) + +# This Makefile target builds all of the standard binaries. +# +all: core tcl # Dynamic link library section. # -- 2.11.4.GIT