2009-10-13 23:10:16 -06: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 13:40:56 -06:00
|
|
|
include ../src/Make.inc
|
2009-10-13 23:10:16 -06:00
|
|
|
|
2011-07-12 21:20:05 -06:00
|
|
|
TARG=tmpltohtml
|
2009-10-13 23:10:16 -06:00
|
|
|
GOFILES=\
|
2011-07-12 21:20:05 -06:00
|
|
|
tmpltohtml.go\
|
2009-10-13 23:10:16 -06:00
|
|
|
|
2011-08-20 17:46:19 -06:00
|
|
|
go_tutorial.html: go_tutorial.tmpl tmpltohtml
|
2011-10-09 18:16:04 -06:00
|
|
|
./makehtml go_tutorial.tmpl
|
2011-08-20 17:46:19 -06:00
|
|
|
|
|
|
|
effective_go.html: effective_go.tmpl tmpltohtml
|
2011-10-09 18:16:04 -06:00
|
|
|
./makehtml effective_go.tmpl
|
2011-08-20 17:46:19 -06:00
|
|
|
|
2010-08-30 13:40:56 -06:00
|
|
|
include ../src/Make.cmd
|