mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-03 06:52:13 +08:00
13 lines
284 B
Makefile
13 lines
284 B
Makefile
|
|
.PHONY: build build-backend build-frontend
|
|||
|
|
|
|||
|
|
# 一键编译前后端
|
|||
|
|
build: build-backend build-frontend
|
|||
|
|
|
|||
|
|
# 编译后端(复用 backend/Makefile)
|
|||
|
|
build-backend:
|
|||
|
|
@$(MAKE) -C backend build
|
|||
|
|
|
|||
|
|
# 编译前端(需要已安装依赖)
|
|||
|
|
build-frontend:
|
|||
|
|
@npm --prefix frontend run build
|