Files
relibre/Makefile
2025-10-18 03:43:12 -04:00

19 lines
253 B
Makefile

# Makefile
APP=relibre-app
.PHONY: deps run build clean
deps:
# Add dependency and generate go.sum
go get github.com/webview/webview_go@latest
go mod tidy
run:
go run .
build:
go build -trimpath -ldflags "-s -w" -o $(APP)
clean:
rm -f $(APP)