Commit e58a7780 authored by Robert Griesemer's avatar Robert Griesemer

ebnf, ebnflint: move under exp

pkg/ebnf -> pkg/exp/ebnf
cmd/ebnflint -> pkg/exp/ebnflint

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5188042
parent 9b8cdad8
...@@ -38,7 +38,6 @@ CLEANDIRS=\ ...@@ -38,7 +38,6 @@ CLEANDIRS=\
8g\ 8g\
8l\ 8l\
cgo\ cgo\
ebnflint\
godoc\ godoc\
gofix\ gofix\
gofmt\ gofmt\
......
...@@ -68,7 +68,6 @@ DIRS=\ ...@@ -68,7 +68,6 @@ DIRS=\
debug/elf\ debug/elf\
debug/gosym\ debug/gosym\
debug/pe\ debug/pe\
ebnf\
encoding/ascii85\ encoding/ascii85\
encoding/base32\ encoding/base32\
encoding/base64\ encoding/base64\
...@@ -78,6 +77,8 @@ DIRS=\ ...@@ -78,6 +77,8 @@ DIRS=\
encoding/pem\ encoding/pem\
exec\ exec\
exp/datafmt\ exp/datafmt\
exp/ebnf\
exp/ebnflint\
exp/gui\ exp/gui\
exp/gui/x11\ exp/gui/x11\
exp/norm\ exp/norm\
...@@ -173,7 +174,6 @@ DIRS=\ ...@@ -173,7 +174,6 @@ DIRS=\
websocket\ websocket\
xml\ xml\
../cmd/cgo\ ../cmd/cgo\
../cmd/ebnflint\
../cmd/godoc\ ../cmd/godoc\
../cmd/gofix\ ../cmd/gofix\
../cmd/gofmt\ ../cmd/gofmt\
...@@ -201,6 +201,7 @@ NOTEST+=\ ...@@ -201,6 +201,7 @@ NOTEST+=\
crypto\ crypto\
crypto/openpgp/error\ crypto/openpgp/error\
crypto/x509/pkix\ crypto/x509/pkix\
exp/ebnflint\
exp/gui\ exp/gui\
exp/gui/x11\ exp/gui/x11\
exp/sql/driver\ exp/sql/driver\
...@@ -220,7 +221,6 @@ NOTEST+=\ ...@@ -220,7 +221,6 @@ NOTEST+=\
testing\ testing\
testing/iotest\ testing/iotest\
../cmd/cgo\ ../cmd/cgo\
../cmd/ebnflint\
../cmd/godoc\ ../cmd/godoc\
../cmd/gotest\ ../cmd/gotest\
../cmd/goyacc\ ../cmd/goyacc\
......
...@@ -2,11 +2,11 @@ ...@@ -2,11 +2,11 @@
# Use of this source code is governed by a BSD-style # Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file. # license that can be found in the LICENSE file.
include ../../Make.inc include ../../../Make.inc
TARG=ebnf TARG=exp/ebnf
GOFILES=\ GOFILES=\
ebnf.go\ ebnf.go\
parser.go\ parser.go\
include ../../Make.pkg include ../../../Make.pkg
...@@ -2,13 +2,13 @@ ...@@ -2,13 +2,13 @@
# Use of this source code is governed by a BSD-style # Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file. # license that can be found in the LICENSE file.
include ../../Make.inc include ../../../Make.inc
TARG=ebnflint TARG=ebnflint
GOFILES=\ GOFILES=\
ebnflint.go\ ebnflint.go\
include ../../Make.cmd include ../../../Make.cmd
test: $(TARG) test: $(TARG)
$(TARG) -start="SourceFile" "$(GOROOT)"/doc/go_spec.html $(TARG) -start="SourceFile" "$(GOROOT)"/doc/go_spec.html
......
...@@ -6,7 +6,7 @@ package main ...@@ -6,7 +6,7 @@ package main
import ( import (
"bytes" "bytes"
"ebnf" "exp/ebnf"
"flag" "flag"
"fmt" "fmt"
"go/scanner" "go/scanner"
......
...@@ -45,7 +45,7 @@ gomake testshort ...@@ -45,7 +45,7 @@ gomake testshort
GOMAXPROCS=10 gomake testshort GOMAXPROCS=10 gomake testshort
) || exit $? ) || exit $?
(xcd cmd/ebnflint (xcd pkg/exp/ebnflint
time gomake test time gomake test
) || exit $? ) || exit $?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment