diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..e74659df2b18d990347b80c6900a9fcebdd41e07 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +################################################## +# Variables # +################################################## +ARCH?=amd64 +CGO?=0 +TARGET_OS?=linux + +################################################## +# Variables # +################################################## + +GIT_VERSION = $(shell git describe --always --abbrev=7) +GIT_COMMIT = $(shell git rev-list -1 HEAD) +DATE = $(shell date -u +"%Y.%m.%d.%H.%M.%S") + +################################################## +# Tests # +################################################## +.PHONY: test +test: + go test ./pkg/... \ No newline at end of file