diff --git a/Makefile b/Makefile index e44c345..c65a044 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,16 @@ -# init the go mod files -init: - go mod init go-notify-helloworld +all: go.mod go mod tidy + go build + +# init the go mod files +go.mod: + go mod init go-notify-helloworld build: go build run: ./go-notify-helloworld + +clean: + rm -f go.* go-notify-helloworld