]> Cypherpunks repositories - gostls13.git/commitdiff
Make.cmd: make 'all' the default target (was 'clean': BUG)
authorRob Pike <r@golang.org>
Fri, 19 Mar 2010 23:33:27 +0000 (16:33 -0700)
committerRob Pike <r@golang.org>
Fri, 19 Mar 2010 23:33:27 +0000 (16:33 -0700)
R=rsc
CC=golang-dev
https://golang.org/cl/661041

src/Make.cmd

index 97df32870001a75b21cd9e99d9552c12e7637574..b2a184b8229cc5378e39d6213a5bb1439ff46fdd 100644 (file)
@@ -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)