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:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user