mirror of https://github.com/zeldaret/tmc.git
Add empty Makefile to fix make setup
This commit is contained in:
parent
55cd163122
commit
6d565ed98d
2
Makefile
2
Makefile
|
|
@ -163,7 +163,7 @@ compare: $(ROM)
|
|||
setup: $(TOOLDIRS)
|
||||
|
||||
extractassets:
|
||||
python tools/asset_extractor/asset_extractor.py $(GAME_VERSION) $(ASSET_BUILDDIR)
|
||||
python3 tools/asset_extractor/asset_extractor.py $(GAME_VERSION) $(ASSET_BUILDDIR)
|
||||
|
||||
$(TOOLDIRS):
|
||||
@$(MAKE) -C $@
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
all:
|
||||
|
|
@ -67,7 +67,7 @@ def extract_assets(variant, assets_folder):
|
|||
|
||||
|
||||
|
||||
def run_gbagfx(path_in: str, path_out:str, options: list[str]) -> None:
|
||||
def run_gbagfx(path_in, path_out, options):
|
||||
subprocess.check_call([os.path.join('tools', 'gbagfx', 'gbagfx'), path_in, path_out] + options)
|
||||
|
||||
def extract_tileset(path):
|
||||
|
|
|
|||
Loading…
Reference in New Issue