gitignore: lib/**/*.combined.ww; drop stray lex.combined.ww

`ww build` on a lib/ module drops a .combined.ww snapshot next
to the source. Only the bootstrap-frozen copies under
selfhost/cmd/*/main.combined.ww are intentionally tracked; the
lib/ ones are transient. lex.combined.ww slipped in via an
ad-hoc `git add lib/`.
This commit is contained in:
2026-05-12 04:22:37 +09:00
parent 5bf30f209c
commit 9227a07f91
2 changed files with 5 additions and 1014 deletions

5
.gitignore vendored
View File

@@ -18,6 +18,11 @@ selfhost/**/*.s
# source; the selfhost/test/ probes don't need them tracked.
selfhost/test/*.combined.ww
# `ww build` on a lib/ module leaves a .combined.ww next to the
# source. None of these are bootstrap inputs (those are under
# selfhost/cmd/*/main.combined.ww) — they're just transient.
lib/**/*.combined.ww
# examples/ build outputs. Each example has its own Makefile that
# leaves the .s/.o/.combined.ww plus a stripped binary behind.
examples/**/*.o