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.
|
|
|
|
|
|
2010-08-30 15:40:56 -04:00
|
|
|
include ../src/Make.inc
|
2009-10-13 22:10:16 -07:00
|
|
|
|
2011-07-13 13:20:05 +10:00
|
|
|
TARG=tmpltohtml
|
2009-10-13 22:10:16 -07:00
|
|
|
GOFILES=\
|
2011-07-13 13:20:05 +10:00
|
|
|
tmpltohtml.go\
|
2009-10-13 22:10:16 -07:00
|
|
|
|
2011-12-13 09:44:06 +11:00
|
|
|
HTML=\
|
|
|
|
|
articles/defer_panic_recover.html\
|
|
|
|
|
articles/error_handling.html\
|
|
|
|
|
effective_go.html\
|
|
|
|
|
go1.html\
|
|
|
|
|
go_tutorial.html\
|
|
|
|
|
|
|
|
|
|
all: tmpltohtml $(HTML)
|
2011-11-01 09:45:04 -07:00
|
|
|
|
2011-12-07 14:33:37 -08:00
|
|
|
%.html: %.tmpl tmpltohtml
|
|
|
|
|
./makehtml $*.tmpl
|
2011-08-21 09:46:19 +10:00
|
|
|
|
2010-08-30 15:40:56 -04:00
|
|
|
include ../src/Make.cmd
|