CasaOS/Makefile

14 lines
274 B
Makefile
Raw Normal View History

2021-09-26 02:35:02 +00:00
.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"