mirror of
https://github.com/distribution/distribution.git
synced 2026-07-17 11:30:05 +00:00
8 lines
131 B
Makefile
8 lines
131 B
Makefile
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
|