diff options
Diffstat (limited to 'src/cmd/yacc/Makefile')
-rw-r--r-- | src/cmd/yacc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cmd/yacc/Makefile b/src/cmd/yacc/Makefile index 56e954289..480844805 100644 --- a/src/cmd/yacc/Makefile +++ b/src/cmd/yacc/Makefile @@ -2,9 +2,9 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -units: yacc.go units.y - go run yacc.go -p units_ units.y - go build -o units y.go +expr: yacc.go expr.y + go run yacc.go -p expr expr.y + go build -o expr y.go clean: - rm -f y.go y.output units + rm -f y.go y.output expr |