LEFT | RIGHT |
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 HTML=\ | 5 HTML=\ |
6 articles/defer_panic_recover.html\ | 6 articles/defer_panic_recover.html\ |
7 articles/error_handling.html\ | 7 articles/error_handling.html\ |
8 articles/slices_usage_and_internals.html\ | 8 articles/slices_usage_and_internals.html\ |
9 articles/laws_of_reflection.html\ | 9 articles/laws_of_reflection.html\ |
10 effective_go.html\ | 10 effective_go.html\ |
11 go1.html\ | 11 go1.html\ |
12 go_tutorial.html\ | |
13 | 12 |
14 all: tmpltohtml $(HTML) | 13 all: tmpltohtml $(HTML) |
15 | 14 |
16 tmpltohtml: tmpltohtml.go | 15 tmpltohtml: tmpltohtml.go |
17 go build tmpltohtml.go | 16 go build tmpltohtml.go |
18 | 17 |
19 %.html: %.tmpl tmpltohtml | 18 %.html: %.tmpl tmpltohtml |
20 ./makehtml $*.tmpl | 19 ./makehtml $*.tmpl |
LEFT | RIGHT |