From 4ad1ca8ab7c47568165e9f537625faa265dab8a6 Mon Sep 17 00:00:00 2001 From: chai2010 Date: Sun, 19 Feb 2023 10:11:33 +0800 Subject: [PATCH] =?UTF-8?q?yacc:=20=E5=91=BD=E4=BB=A4=E8=A1=8C=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E5=8A=A0=E5=BC=95=E5=8F=B7,=20=E4=BB=A5=E9=80=82?= =?UTF-8?q?=E9=85=8DWindows=E7=8E=AF=E5=A2=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _examples/expr/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_examples/expr/Makefile b/_examples/expr/Makefile index 7fef9a8..d755fb1 100644 --- a/_examples/expr/Makefile +++ b/_examples/expr/Makefile @@ -1,9 +1,9 @@ default: - go run ../../main.go yacc -l -p=expr -c=copyright.txt -o=y.wa expr.y + go run ../../main.go yacc -l -p=expr -c="copyright.txt" -o="y.wa" expr.y go run ../../main.go y.wa dev: - go run ../../main.go yacc -l -p=expr -c=copyright.txt -o=y.wa.go expr.y + go run ../../main.go yacc -l -p=expr -c="copyright.txt" -o="y.wa.go" expr.y go run y.wa.go clean: -- GitLab