2009-10-13 22:10:16 -07:00
|
|
|
# Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
|
# license that can be found in the LICENSE file.
|
|
|
|
|
|
2011-12-13 09:44:06 +11:00
|
|
|
HTML=\
|
|
|
|
|
articles/defer_panic_recover.html\
|
|
|
|
|
articles/error_handling.html\
|
2012-01-06 09:21:43 +11:00
|
|
|
articles/slices_usage_and_internals.html\
|
2011-12-13 09:44:06 +11:00
|
|
|
effective_go.html\
|
|
|
|
|
go1.html\
|
|
|
|
|
go_tutorial.html\
|
|
|
|
|
|
|
|
|
|
all: tmpltohtml $(HTML)
|
2011-11-01 09:45:04 -07:00
|
|
|
|
2012-02-08 13:07:13 +11:00
|
|
|
tmpltohtml: tmpltohtml.go
|
|
|
|
|
go build tmpltohtml.go
|
|
|
|
|
|
2011-12-07 14:33:37 -08:00
|
|
|
%.html: %.tmpl tmpltohtml
|
|
|
|
|
./makehtml $*.tmpl
|