14 lines
274 B
Makefile
14 lines
274 B
Makefile
|
.PHONY:build build-ui build-backend help
|
||
|
|
||
|
build: build-ui build-backend
|
||
|
|
||
|
|
||
|
build-ui:
|
||
|
cd UI && yarn install && yarn build
|
||
|
|
||
|
build-backend:
|
||
|
export CGO_ENABLED=1;export CGO_LDFLAGS=-static;go mod tidy;go build -o ./casa main.go;upx --lzma --best casa
|
||
|
|
||
|
help:
|
||
|
@echo "call john"
|