4 lines
106 B
Makefile
4 lines
106 B
Makefile
all : parser.go
|
|
|
|
parser.go : parser.go.y
|
|
goyacc -o $@ parser.go.y; [ -f y.output ] && ( rm -f y.output )
|