2014-05-22 18:56:28 -05:00
|
|
|
TEST?=./...
|
|
|
|
|
2014-05-23 19:00:51 -05:00
|
|
|
default: test
|
|
|
|
|
2014-08-19 11:56:50 -05:00
|
|
|
bin: config/y.go
|
2014-11-25 17:29:15 -06:00
|
|
|
@sh -c "'$(CURDIR)/scripts/build.sh'"
|
2014-06-06 22:25:17 -05:00
|
|
|
|
2014-08-19 11:56:50 -05:00
|
|
|
dev: config/y.go
|
2014-11-25 17:29:15 -06:00
|
|
|
@TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'"
|
2014-07-28 12:53:36 -05:00
|
|
|
|
2014-08-19 11:56:50 -05:00
|
|
|
test: config/y.go
|
2014-09-16 14:02:35 -05:00
|
|
|
TF_ACC= go test $(TEST) $(TESTARGS) -timeout=10s -parallel=4
|
2014-05-22 18:56:28 -05:00
|
|
|
|
2014-08-19 11:56:50 -05:00
|
|
|
testacc: config/y.go
|
2014-07-10 13:41:18 -05:00
|
|
|
@if [ "$(TEST)" = "./..." ]; then \
|
|
|
|
echo "ERROR: Set TEST to a specific package"; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
2014-12-12 16:21:20 -06:00
|
|
|
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 45m
|
2014-07-10 13:41:18 -05:00
|
|
|
|
2014-08-19 11:56:50 -05:00
|
|
|
testrace: config/y.go
|
2014-07-10 15:33:57 -05:00
|
|
|
TF_ACC= go test -race $(TEST) $(TESTARGS)
|
2014-07-01 12:04:23 -05:00
|
|
|
|
2014-08-19 11:56:50 -05:00
|
|
|
updatedeps: config/y.go
|
2015-01-10 17:24:38 -06:00
|
|
|
# Go 1.4 changed the format of `go get` a bit by requiring the
|
|
|
|
# canonical full path. We work around this and just force.
|
2014-12-21 07:41:09 -06:00
|
|
|
@if [ $(shell go version | cut -f3 -d" " | cut -f2 -d.) -lt 4 ]; then \
|
|
|
|
go get -u -v ./...; \
|
|
|
|
else \
|
|
|
|
go get -f -u -v ./...; \
|
|
|
|
fi
|
2014-06-26 12:33:39 -05:00
|
|
|
|
2014-07-22 17:23:05 -05:00
|
|
|
config/y.go: config/expr.y
|
|
|
|
cd config/ && \
|
|
|
|
go tool yacc -p "expr" expr.y
|
|
|
|
|
2014-05-22 18:56:28 -05:00
|
|
|
clean:
|
2014-08-05 12:39:18 -05:00
|
|
|
rm config/y.go
|
2014-05-22 18:56:28 -05:00
|
|
|
|
2014-08-28 11:56:41 -05:00
|
|
|
.PHONY: bin clean default test updatedeps
|