hcl/Makefile

10 lines
112 B
Makefile
Raw Normal View History

2014-07-31 20:56:51 +00:00
default: test
test: y.go
go test
y.go: parse.y
go tool yacc -p "hcl" parse.y
.PHONY: default test