From: Alex Brainman Date: Sun, 25 Jul 2010 23:55:25 +0000 (+1000) Subject: fix windows Make.cmd: X-Git-Tag: weekly.2010-07-29~43 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=aa4639faf1943d76544cbc4a069239f2087b0563;p=gostls13.git fix windows Make.cmd: - TARG had extra space at the end; - it should be set before "all" target. R=rsc, Joe Poirier CC=golang-dev https://golang.org/cl/1846042 --- diff --git a/src/Make.cmd b/src/Make.cmd index b2b764f26d..1344010936 100644 --- a/src/Make.cmd +++ b/src/Make.cmd @@ -2,6 +2,10 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. +ifeq ($(GOOS),windows) +TARG:=$(TARG).exe +endif + all: $(TARG) # ugly hack to deal with whitespaces in $GOROOT @@ -11,10 +15,6 @@ QUOTED_GOROOT:=$(subst $(space),\ ,$(GOROOT)) include $(QUOTED_GOROOT)/src/Make.common -ifeq ($(GOOS),windows) -TARG:=$(TARG).exe -endif - PREREQ+=$(patsubst %,%.make,$(DEPS)) $(TARG): _go_.$O $(OFILES)