From ca48aae0c9a5d97a7892e2c842468fadf2694c8b Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 23:31:23 +0000 Subject: [PATCH] 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> --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index c7898bf53..be8a42278 100644 --- a/Makefile +++ b/Makefile @@ -307,6 +307,11 @@ docker-clean: 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: @echo "Building macOS .app bundle..."