Files
relibre/Makefile
2025-10-18 02:20:30 -04:00

18 lines
215 B
Makefile

# Makefile
APP=relibre-app
.PHONY: deps run build clean
deps:
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)