Delta Between Two Patch Sets: src/cmd/godoc/Makefile
Issue 3699041 :
code review 3699041: godoc: support for regular expression full text search (Closed)
Left Patch Set: code review 3699041: godoc: initial support for regular expression full text...
Right Patch Set: code review 3699041: godoc: support for regular expression full text search
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
doc/all.css
lib/godoc/search.html
lib/godoc/search.txt
lib/godoc/source.html
src/cmd/godoc/Makefile
src/cmd/godoc/doc.go
src/cmd/godoc/format.go
src/cmd/godoc/godoc.go
src/cmd/godoc/index.go
src/cmd/godoc/main.go
src/cmd/godoc/snippet.go
LEFT RIGHT
(no file at all) 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 include ../../Make.inc 5 include ../../Make.inc
6 6
7 TARG=godoc 7 TARG=godoc
8 GOFILES=\ 8 GOFILES=\
9 codewalk.go\ 9 codewalk.go\
10 dirtrees.go\ 10 dirtrees.go\
11 format.go\
11 godoc.go\ 12 godoc.go\
12 index.go\ 13 index.go\
13 main.go\ 14 main.go\
14 mapping.go\ 15 mapping.go\
15 snippet.go\ 16 snippet.go\
16 spec.go\ 17 spec.go\
17 utils.go\ 18 utils.go\
18 19
19 include ../../Make.cmd 20 include ../../Make.cmd
LEFT RIGHT