go-notify-helloworld/Makefile

17 lines
191 B
Makefile
Raw Normal View History

all: go.mod
go mod tidy
go build
2022-10-07 18:18:32 -05:00
# init the go mod files
go.mod:
2022-10-07 18:18:32 -05:00
go mod init go-notify-helloworld
build:
go build
run:
./go-notify-helloworld
clean:
rm -f go.* go-notify-helloworld