14 lines
350 B
Makefile
14 lines
350 B
Makefile
VERSION := 1.0.0
|
|
|
|
GO := go
|
|
|
|
BUILD_FLAGS := -buildmode=pie -trimpath
|
|
LDFLAGS := -linkmode=external -extldflags="-Wl,-z,relro,-z,now"
|
|
|
|
build:
|
|
$(GO) build $(BUILD_FLAGS) -ldflags='$(LDFLAGS)' -o ./certman .
|
|
@cp ./certman ./certman-$(VERSION)-amd64
|
|
|
|
stage: build
|
|
@sudo cp ./certman /srv/vm-passthru/certman
|
|
@ssh steven@192.168.122.44 updateCertman.sh
|