Makefile 112 B

1234
  1. all : parser.go
  2. parser.go : parser.go.y
  3. go tool yacc -o $@ parser.go.y; [ -f y.output ] && ( rm -f y.output )