LEFT | RIGHT |
(Both sides are equal) |
1 # Copyright 2009 The Go Authors. All rights reserved. | 1 # Copyright 2009 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 O:=$(HOST_O) | 6 O:=$(HOST_O) |
7 | 7 |
8 LIB=gc.a | 8 LIB=gc.a |
9 | 9 |
10 HFILES=\ | 10 HFILES=\ |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | 59 |
60 builtin.c: builtin.c.boot | 60 builtin.c: builtin.c.boot |
61 cp builtin.c.boot builtin.c | 61 cp builtin.c.boot builtin.c |
62 | 62 |
63 subr.$O: opnames.h | 63 subr.$O: opnames.h |
64 | 64 |
65 opnames.h: mkopnames go.h | 65 opnames.h: mkopnames go.h |
66 ./mkopnames go.h >opnames.h | 66 ./mkopnames go.h >opnames.h |
67 | 67 |
68 CLEANFILES+=*.[568] [568].out y1.tab.c yerr.h mkbuiltin1 builtin.c _builtin.c op
names.h | 68 CLEANFILES+=*.[568] [568].out y1.tab.c yerr.h mkbuiltin1 builtin.c _builtin.c op
names.h |
| 69 |
| 70 mkbuiltin1: mkbuiltin1.$O |
| 71 $(HOST_LD) -o $@ mkbuiltin1.$O -L"$(GOROOT)"/lib -lbio -l9 -lm $(HOST_LD
FLAGS) |
| 72 |
LEFT | RIGHT |