From 824ad5a3d3136aed5403d736d3b4b2acd1f20ff5 Mon Sep 17 00:00:00 2001 From: xfy Date: Mon, 29 Jun 2026 09:59:14 +0800 Subject: [PATCH] chore(Makefile): remove build hints and start target Build instructions have been moved to AGENTS.md. The verbose echo messages and the standalone start target are no longer needed. --- Makefile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Makefile b/Makefile index ac7c2c4..38906c2 100644 --- a/Makefile +++ b/Makefile @@ -8,11 +8,6 @@ build: @tailwindcss -i input.css -o public/style.css --minify @$(MAKE) doc @dx build --release --debug-symbols=false - @echo "" - @echo "Build complete! To run the release version locally, use:" - @echo " make start" - @echo "Or run manually with:" - @echo " DIOXUS_ASSET_DIR=target/dx/yggdrasil/release/web/public ./target/dx/yggdrasil/release/web/server" build-linux: @$(MAKE) build-editor @@ -68,10 +63,6 @@ dev: build-editor-incremental build-lightbox-incremental build-core-incremental trap 'kill $$TAILWIND_PID 2>/dev/null; exit' INT TERM EXIT; \ SSR_CACHE_SECS=0 dx serve --addr 0.0.0.0 -start: - @echo "Starting local release build..." - @DIOXUS_ASSET_DIR=target/dx/yggdrasil/release/web/public ./target/dx/yggdrasil/release/web/server - css: @tailwindcss -i input.css -o public/style.css