github.com/assemblaj/gopher-lua@v0.0.0-20221116224352-d57295a0d9e8/parse/Makefile (about)

     1  all : parser.go
     2  
     3  parser.go : parser.go.y
     4  	goyacc -o $@ parser.go.y; [ -f y.output ] && ( rm -f y.output )
     5  
     6  clean:
     7  	rm -f parser.go