xframe/vendor/github.com/yuin/gopher-lua/parse/Makefile

8 lines
131 B
Makefile
Raw Normal View History

2024-10-12 12:55:20 +08:00
all : parser.go
parser.go : parser.go.y
goyacc -o $@ parser.go.y; [ -f y.output ] && ( rm -f y.output )
clean:
rm -f parser.go