diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..54e3462 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ + +.PHONY: test +test: + go test -v ./... + +.PHONY: install +install: + go install + +.PHONY: clean +clean: + rm -Rf *.ugit vcs + +.PHONY: build +build: + go build -v . + @echo "[INFO] Binaries availlable : " + @ls -l vcs \ No newline at end of file