mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-30 16:30:24 +00:00
010d641899
These are harder to pick up automatically, and will only change when the tools are edited, anyway... Any other methods for solving this issue can always be reconsidered later down the line...
20 lines
594 B
Makefile
20 lines
594 B
Makefile
# Pokémon species data
|
|
|
|
POKEMON_DIR = $(DATA_ASM_SUBDIR)/pokemon
|
|
POKEMON_SPECIES = $(POKEMON_DIR)/species_data.inc
|
|
|
|
# Headers included by tools/dungeonjson/dungeonjson.cpp:generate_species_data_text
|
|
POKEMON_SPECIES_INC = \
|
|
include/constants/ability.h \
|
|
include/constants/evolve_type.h \
|
|
include/constants/friend_area.h \
|
|
include/constants/item.h \
|
|
include/constants/species.h \
|
|
include/constants/type.h \
|
|
include/constants/walkable_tile.h
|
|
|
|
data_pokemon: $(POKEMON_SPECIES);
|
|
|
|
$(POKEMON_SPECIES): $(POKEMON_DIR)/species_data.json $(POKEMON_SPECIES_INC)
|
|
$(DUNGEONJSON) species pmd-red $<
|