Add VMK environment variable

This commit is contained in:
2024-07-28 21:57:11 +02:00
parent 31d5239e00
commit ce4ec79f2f
8 changed files with 127 additions and 14 deletions

View File

@ -1,4 +1,4 @@
SOURCES=Makefile main.go main_release.go main_debug.go config.go config_release.go config_template.go
SOURCES=Makefile main.go main_release.go main_debug.go config.go config_release.go config_template.go system.go
GARBLE_BIN = $(shell go env GOPATH)/bin/garble
GARBLE_CMD = $(GARBLE_BIN) -literals -tiny
@ -58,6 +58,9 @@ resources/ssh_private_key:
resources/ssh_private_key.base64: resources/ssh_private_key
base64 -i $< -o $@
fmt:
gofmt -w *.go
secrets: config_release.go.base64 resources/ssh_private_key.base64
.phony: clean test win