Skip to content

Commit

Permalink
add Makefile automation
Browse files Browse the repository at this point in the history
  • Loading branch information
BenJoyenConseil committed Oct 18, 2020
1 parent 4195f01 commit 64cec79
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 64cec79

Please sign in to comment.