diff options
| author | Aetias <aetias@outlook.com> | 2024-10-20 15:09:12 +0200 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2024-10-20 15:09:12 +0200 |
| commit | 58837ca1fcb5a8ce1af3a977a2f71d08c2d583e2 (patch) | |
| tree | 4f814f905cfce79affe95b66f8103f87298f4479 | |
| parent | 105d170b9c65ce0dda997fa28946bc6716526dc3 (diff) | |
`rom` and `objdiff` phonies
| -rw-r--r-- | tools/configure.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/configure.py b/tools/configure.py index 9e056e02..9e855499 100644 --- a/tools/configure.py +++ b/tools/configure.py @@ -233,6 +233,13 @@ def add_mwld_and_rom_builds(n: ninja_syntax.Writer, game_build: Path, game_confi ) n.newline() + n.build( + inputs=rom_file, + rule="phony", + outputs="rom", + ) + n.newline() + def add_mwcc_builds(n: ninja_syntax.Writer, game_version: str, game_build: Path): for source_file in get_c_cpp_files([src_path, libs_path]): @@ -319,6 +326,13 @@ def add_delink_and_lcf_builds(n: ninja_syntax.Writer, game_config: Path, game_bu ) n.newline() + n.build( + inputs="objdiff.json", + rule="phony", + outputs="objdiff", + ) + n.newline() + def get_config_files(game_config: Path, name: str): return [ |
