@@ -18,10 +18,12 @@ The local source build is driven by `make`.
1818
1919It generates:
2020
21- - ` clayterm.wasm ` — the compiled WebAssembly module built from the C sources
22- - ` wasm.ts ` — a generated TypeScript file derived from ` clayterm.wasm `
21+ - ` layout.wasm ` — the layout WebAssembly module built from the C sources
22+ - ` input.wasm ` — the input WebAssembly module built from the C sources
23+ - ` layout.wasm.ts ` — generated TypeScript derived from ` layout.wasm `
24+ - ` input.wasm.ts ` — generated TypeScript derived from ` input.wasm `
2325
24- ` wasm .ts` is generated output, not hand-maintained source.
26+ These ` .ts ` files are generated output, not hand-maintained source.
2527
2628## Clone the repo with submodules
2729
@@ -182,8 +184,10 @@ make
182184
183185This should produce:
184186
185- - ` clayterm.wasm `
186- - ` wasm.ts `
187+ - ` layout.wasm `
188+ - ` input.wasm `
189+ - ` layout.wasm.ts `
190+ - ` input.wasm.ts `
187191
188192For a clean rebuild:
189193
@@ -197,7 +201,7 @@ Re-run `make` when:
197201
198202- you change files under ` src/ `
199203- you update the ` clay ` submodule
200- - ` clayterm .wasm` or ` wasm.ts ` is missing
204+ - ` layout .wasm` , ` input.wasm ` , ` layout.wasm.ts ` , or ` input. wasm.ts` is missing
201205- generated outputs look stale after switching branches or pulling changes
202206
203207When in doubt, use a clean rebuild:
@@ -247,7 +251,7 @@ make clean && make
247251Symptoms may include:
248252
249253- target-related ` clang ` errors mentioning ` wasm32 `
250- - linker failures while producing ` clayterm .wasm`
254+ - linker failures while producing the ` .wasm ` outputs
251255
252256Recovery:
253257
@@ -267,8 +271,8 @@ If the smoke test fails, fix the toolchain first and only then rerun `make`.
267271
268272Symptoms may include:
269273
270- - ` clayterm .wasm` is missing
271- - ` wasm.ts ` is missing
274+ - ` layout.wasm ` or ` input .wasm` is missing
275+ - ` layout.wasm.ts ` or ` input. wasm.ts` is missing
272276- you changed ` src/ ` or updated ` clay/ ` , but the generated outputs do not match
273277
274278Recovery:
0 commit comments