@@ -0,0 +1,18 @@
# Makefile
APP=relibre-app
.PHONY: deps run build clean
deps:
# Add dependency and generate go.sum
go get github.com/webview/webview_go@v0.1.1
go mod tidy
run:
go run .
build:
go build -trimpath -ldflags "-s -w" -o $(APP)
clean:
rm -f $(APP)
The note is not visible to the blocked user.