mirror of
https://github.com/open-goal/jak-project
synced 2026-06-20 00:08:14 -04:00
22 lines
638 B
YAML
22 lines
638 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
format:
|
|
cmds:
|
|
- python ./third-party/run-clang-format/run-clang-format.py -r common decompiler game goalc test -i
|
|
run-game:
|
|
cmds:
|
|
- ./out/build/Debug/bin/gk.exe -fakeiso -debug -nodisplay
|
|
repl:
|
|
cmds:
|
|
- ./out/build/Debug/bin/goalc.exe -auto-lt
|
|
decomp:
|
|
cmds:
|
|
- ./out/build/Debug/bin/decompiler.exe "./decompiler/config/jak1_ntsc_black_label.jsonc" "./iso_data/jak1" "./decompiler_out/jak1"
|
|
decomp-clean:
|
|
cmds:
|
|
- rm ./decompiler_out/**/*.asm
|
|
- rm ./decompiler_out/**/*disasm.gc
|
|
cleanup-all-types:
|
|
cmds:
|
|
- python ./scripts/cleanup-all-types.py |