Fix Windows daemon: move 'all' target before LevelDB in makefile.mingw

The 'all: trianglesd.exe' target was defined after 'leveldb/libleveldb.a:'
making LevelDB the default target. Make would only build LevelDB and exit.
Move 'all' to before LevelDB so it becomes the default target (like
makefile.unix). Also pass explicit 'all' target in CI as belt-and-suspenders.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 16:26:51 -07:00
parent 644dfcd65f
commit 5af44ade9e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ jobs:
set -eo pipefail
cd src
mkdir -p obj
make -f makefile.mingw DEPSDIR=/mingw64 -j$(nproc) 2>&1
make -f makefile.mingw DEPSDIR=/mingw64 all -j$(nproc) 2>&1
strip --strip-all trianglesd.exe
cp trianglesd.exe ../trianglesd.exe