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