feat: add build-web target to root Makefile
This commit adds a new `build-web` target to the Makefile at the repository root. This target delegates the build process to the `web` directory's Makefile by running `cd web && $(MAKE) build`, making it easier to build the web interface from the root directory. Co-authored-by: TanLuong <28281768+TanLuong@users.noreply.github.com>
This commit is contained in:
parent
41f3455b94
commit
ca48aae0c9
1 changed files with 5 additions and 0 deletions
5
Makefile
5
Makefile
|
|
@ -307,6 +307,11 @@ docker-clean:
|
||||||
docker rmi picoclaw:latest picoclaw:full 2>/dev/null || true
|
docker rmi picoclaw:latest picoclaw:full 2>/dev/null || true
|
||||||
|
|
||||||
|
|
||||||
|
## build-web: Build the web frontend and backend
|
||||||
|
build-web:
|
||||||
|
@echo "Building web interface..."
|
||||||
|
@cd web && $(MAKE) build
|
||||||
|
|
||||||
## build-macos-app: Build PicoClaw macOS .app bundle (no terminal window)
|
## build-macos-app: Build PicoClaw macOS .app bundle (no terminal window)
|
||||||
build-macos-app:
|
build-macos-app:
|
||||||
@echo "Building macOS .app bundle..."
|
@echo "Building macOS .app bundle..."
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue