From: Rob Pike Date: Fri, 19 Mar 2010 23:33:27 +0000 (-0700) Subject: Make.cmd: make 'all' the default target (was 'clean': BUG) X-Git-Tag: weekly.2010-03-22~11 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f9d6af9fb8d9882ed4b01c22568f49ce37906eed;p=gostls13.git Make.cmd: make 'all' the default target (was 'clean': BUG) R=rsc CC=golang-dev https://golang.org/cl/661041 --- diff --git a/src/Make.cmd b/src/Make.cmd index 97df328700..b2a184b822 100644 --- a/src/Make.cmd +++ b/src/Make.cmd @@ -2,6 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. +all: $(TARG) # ugly hack to deal with whitespaces in $GOROOT nullstring := @@ -12,8 +13,6 @@ include $(QUOTED_GOROOT)/src/Make.common PREREQ+=$(patsubst %,%.make,$(DEPS)) -all: $(TARG) - $(TARG): _go_.$O $(OFILES) $(QUOTED_GOBIN)/$(LD) -o $@ _go_.$O $(OFILES)