LEFT | RIGHT |
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 Loading... |
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\ |
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) |
LEFT | RIGHT |