blob: 3ca4d0f07d2a07ef3bc88e4b229a12d176f65940 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Dungeon Pokemon data
DUNGEONS_DIR = $(DATA_ASM_SUBDIR)/dungeon
DUNGEON_DIRS := $(dir $(wildcard $(DUNGEONS_DIR)/*/pokemon_found.json))
DUNGEON_POKEMON := $(patsubst $(DUNGEONS_DIR)/%/,$(DUNGEONS_DIR)/%/pokemon_found.inc,$(DUNGEON_DIRS))
dungeon_pokemon: $(DUNGEON_POKEMON);
$(DUNGEONS_DIR)/%/pokemon_found.inc: $(DUNGEONS_DIR)/%/pokemon_found.json
$(DUNGEONJSON) dungeon pmd-red $<
|