Files
motdGO/Makefile
2023-08-13 20:02:38 +02:00

17 lines
291 B
Makefile

.PHONY: build install init
init:
go mod init motdGO
build:
export GO11MODULE="auto" \
go mod download; \
go mod vendor; \
CGO_ENABLED=0 go build -a -ldflags '-s' -installsuffix cgo -o motd cmd/motdGO/main.go
install:
export GO11MODULE="on"; \
go mod tidy; \
go mod download