hcl/Makefile
2014-08-02 11:41:10 -07:00

22 lines
319 B
Makefile

default: test
fmt: hcl/y.go json/y.go
go fmt ./...
test: hcl/y.go json/y.go
go test ./...
hcl/y.go: hcl/parse.y
cd hcl && \
go tool yacc -p "hcl" parse.y
json/y.go: json/parse.y
cd json/ && \
go tool yacc -p "json" parse.y
clean:
rm -f hcl/y.go
rm -f json/y.go
.PHONY: default test