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-08-21 09:46:19 +10:00
|
|
|
go_tutorial.html: go_tutorial.tmpl tmpltohtml
|
2011-10-10 11:16:04 +11:00
|
|
|
./makehtml go_tutorial.tmpl
|
2011-08-21 09:46:19 +10:00
|
|
|
|
|
|
|
|
effective_go.html: effective_go.tmpl tmpltohtml
|
2011-10-10 11:16:04 +11:00
|
|
|
./makehtml effective_go.tmpl
|
2011-08-21 09:46:19 +10:00
|
|
|
|
2010-08-30 15:40:56 -04:00
|
|
|
include ../src/Make.cmd
|