LEFT | RIGHT |
(no file at all) | |
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 RAWHTML=\ | 5 RAWHTML=\ |
6 articles/defer_panic_recover.rawhtml\ | 6 articles/defer_panic_recover.rawhtml\ |
7 articles/error_handling.rawhtml\ | 7 articles/error_handling.rawhtml\ |
8 articles/slices_usage_and_internals.rawhtml\ | 8 articles/slices_usage_and_internals.rawhtml\ |
9 articles/laws_of_reflection.rawhtml\ | 9 articles/laws_of_reflection.rawhtml\ |
| 10 articles/c_go_cgo.rawhtml\ |
| 11 articles/go_concurrency_patterns_timing_out_moving_on.rawhtml\ |
10 articles/image_draw.rawhtml\ | 12 articles/image_draw.rawhtml\ |
11 effective_go.rawhtml\ | 13 effective_go.rawhtml\ |
12 go1.rawhtml\ | 14 go1.rawhtml\ |
13 | 15 |
14 all: $(RAWHTML) | 16 all: $(RAWHTML) |
15 | 17 |
16 %.rawhtml: %.html | 18 %.rawhtml: %.html |
17 godoc -url /doc/$< >$@ | 19 godoc -url /doc/$< >$@ |
18 | 20 |
19 clean: | 21 clean: |
20 » rm -f $(RAWHTML) | 22 » rm -f $(RAWHTML) |
LEFT | RIGHT |