From 64cec791bc4a56077a2dadb89e8f70f8e9df6704 Mon Sep 17 00:00:00 2001 From: BenJoyenConseil Date: Sun, 18 Oct 2020 20:50:57 +0200 Subject: [PATCH] add Makefile automation --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile 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