move things

This commit is contained in:
Florian Hoss 2022-05-30 21:13:07 +02:00
parent 30ff38bce4
commit b2acdede89
14 changed files with 5 additions and 99 deletions

View file

@ -0,0 +1,17 @@
# Go parameters
GoCMD=go
GoBUILD=$(GoCMD) build
GoCLEAN=$(GoCMD) clean
GoTEST=$(GoCMD) test
GoMOD=$(GoCMD) mod
BINARY_NAME=tool
# To install GoLang please follow the installation instructions on https://go.dev/
all: build
build:
$(GoBUILD) -o $(BINARY_NAME) -v
clean:
$(GOCLEAN)
rm -f $(BINARY_NAME)
deps:
$(GoMOD) tidy