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:
google-labs-jules[bot] 2026-03-24 23:31:23 +00:00
parent 41f3455b94
commit ca48aae0c9

View file

@ -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..."