mirror of
https://github.com/KevinMidboe/motdGO.git
synced 2025-10-29 09:40:23 +00:00
17 lines
300 B
Makefile
17 lines
300 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-larry cmd/figlet4go/main.go
|
|
|
|
install:
|
|
export GO11MODULE="on"; \
|
|
go mod tidy; \
|
|
go mod download
|
|
|