Add empty Makefile to fix make setup

This commit is contained in:
octorock 2021-09-11 10:59:58 +02:00
parent 55cd163122
commit 6d565ed98d
3 changed files with 3 additions and 2 deletions

View File

@ -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 $@

View File

@ -0,0 +1 @@
all:

View File

@ -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):