make the build script use 'include' statement instead of a hard-coded '.asm' file list

This commit is contained in:
2026-05-01 17:22:22 +02:00
parent 6920d10089
commit 92ac475d58
6 changed files with 101 additions and 79 deletions

View File

@@ -43,7 +43,10 @@ Bundle all `.asm` and `.ppm` files and output the (optionaly minified) result.
Usage example:
```sh
./build.ts --minify > pacman.asm
./build.ts --minify main.asm > pacman.asm
# To beforehand convert all ppm files
./build.ts --ppm --minify main.asm > pacman.asm
```
## Documentation