๐Ÿ“ฆ IceWhaleTech / CasaOS

๐Ÿ“„ Makefile ยท 14 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14.PHONY:build build-ui build-backend help

build: build-ui build-backend


build-ui:
	cd CasaOS-UI && yarn install && yarn build

build-backend:
	export CGO_ENABLED=1;export CGO_LDFLAGS=-static;go build -o ./casa main.go;upx --lzma --best casa

help:
	@echo "call john"