hcl/Makefile
2014-07-31 13:56:51 -07:00

10 lines
112 B
Makefile

default: test
test: y.go
go test
y.go: parse.y
go tool yacc -p "hcl" parse.y
.PHONY: default test