Left: | ||
Right: |
OLD | NEW |
---|---|
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 | 6 |
7 TARG=gob | 7 TARG=gob |
8 GOFILES=\ | 8 GOFILES=\ |
9 decode.go\ | 9 decode.go\ |
10 decoder.go\ | 10 decoder.go\ |
11 doc.go\ | |
adg
2010/10/20 03:35:09
Don't add doc.go to the build. Only godoc uses it.
| |
11 encode.go\ | 12 encode.go\ |
12 encoder.go\ | 13 encoder.go\ |
13 type.go\ | 14 type.go\ |
14 | 15 |
15 include ../../Make.pkg | 16 include ../../Make.pkg |
16 | 17 |
17 # Help for debugging. Requires adding debug.go to the gob package as well. | 18 # Help for debugging. Requires adding debug.go to the gob package as well. |
18 | 19 |
19 dump: dump.$O | 20 dump: dump.$O |
20 $(LD) -o dump $< | 21 $(LD) -o dump $< |
21 | 22 |
22 dump.$O: dump.go | 23 dump.$O: dump.go |
23 $(GC) $< | 24 $(GC) $< |
OLD | NEW |