diff options
Diffstat (limited to 'src/cmd/ebnflint/Makefile')
-rw-r--r-- | src/cmd/ebnflint/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cmd/ebnflint/Makefile b/src/cmd/ebnflint/Makefile new file mode 100644 index 000000000..8f030aaef --- /dev/null +++ b/src/cmd/ebnflint/Makefile @@ -0,0 +1,15 @@ +# 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. + +include ../../Make.inc + +TARG=ebnflint +GOFILES=\ + ebnflint.go\ + +include ../../Make.cmd + +test: $(TARG) + $(TARG) -start="SourceFile" "$(GOROOT)"/doc/go_spec.html + |