forked from CWAD/relibre
18 lines
215 B
Makefile
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)
|
|
|