You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
prometheus/rules/Makefile

15 lines
288 B

all: parser.y.go lexer.l.go
parser.y.go: parser.y
go tool yacc -o parser.y.go -v "" parser.y
lexer.l.go: parser.y.go lexer.l
golex lexer.l
test: all
go test -i github.com/matttproud/prometheus/rules
go test github.com/matttproud/prometheus/rules
clean:
rm lexer.l.go parser.y.go