hcl/Makefile

21 lines
284 B
Makefile
Raw Normal View History

2014-07-31 20:56:51 +00:00
default: test
2014-08-02 18:38:41 +00:00
fmt: y.go json/y.go
go fmt ./...
test: y.go json/y.go
go test ./...
2014-07-31 20:56:51 +00:00
y.go: parse.y
go tool yacc -p "hcl" parse.y
2014-08-02 18:38:41 +00:00
json/y.go: json/parse.y
cd json/ && \
go tool yacc -p "json" parse.y
clean:
rm -f y.go
rm -f json/y.go
2014-07-31 20:56:51 +00:00
.PHONY: default test