Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(698)

Delta Between Two Patch Sets: src/cmd/Makefile

Issue 4259065: code review 4259065: gotype: commandline tool to typecheck go programs (Closed)
Left Patch Set: diff -r b8d901732d17 https://go.googlecode.com/hg/ Created 14 years ago
Right Patch Set: diff -r c05f1a235478 https://go.googlecode.com/hg/ Created 14 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | src/cmd/gotype/Makefile » ('j') | src/cmd/gotype/doc.go » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 # Copyright 2011 The Go Authors. All rights reserved. 1 # Copyright 2011 The Go Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style 2 # Use of this source code is governed by a BSD-style
3 # license that can be found in the LICENSE file. 3 # license that can be found in the LICENSE file.
4 4
5 include ../Make.inc 5 include ../Make.inc
6 6
7 all: install 7 all: install
8 8
9 # Only build tools for current architecture, and only tools written in C. 9 # Only build tools for current architecture, and only tools written in C.
10 # The tools written in Go are managed by ../pkg/Makefile. 10 # The tools written in Go are managed by ../pkg/Makefile.
(...skipping 22 matching lines...) Expand all
33 6a\ 33 6a\
34 6c\ 34 6c\
35 6g\ 35 6g\
36 6l\ 36 6l\
37 8a\ 37 8a\
38 8c\ 38 8c\
39 8g\ 39 8g\
40 8l\ 40 8l\
41 cgo\ 41 cgo\
42 ebnflint\ 42 ebnflint\
43 gocheck\
44 godoc\ 43 godoc\
45 gofmt\ 44 gofmt\
45 gotype\
rsc 2011/03/11 15:16:57 sort down
46 goinstall\ 46 goinstall\
47 goyacc\ 47 goyacc\
48 hgpatch\ 48 hgpatch\
49 49
50 install: $(patsubst %,%.install,$(DIRS)) 50 install: $(patsubst %,%.install,$(DIRS))
51 clean: $(patsubst %,%.clean,$(CLEANDIRS)) 51 clean: $(patsubst %,%.clean,$(CLEANDIRS))
52 52
53 %.install: 53 %.install:
54 @echo 54 @echo
55 @echo %%%% making $* %%%% 55 @echo %%%% making $* %%%%
56 @echo 56 @echo
57 $(MAKE) -C $* install 57 $(MAKE) -C $* install
58 58
59 gc.install $(O)c.install: cc.install 59 gc.install $(O)c.install: cc.install
60 $(O)g.install: gc.install 60 $(O)g.install: gc.install
61 $(O)a.install $(O)c.install $(O)g.install: $(O)l.install 61 $(O)a.install $(O)c.install $(O)g.install: $(O)l.install
62 62
63 %.clean: 63 %.clean:
64 $(MAKE) -C $* clean 64 $(MAKE) -C $* clean
65 65
66 echo-dirs: 66 echo-dirs:
67 @echo $(DIRS) 67 @echo $(DIRS)
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b