2019-04-28 17:12:26 +00:00
|
|
|
# JSON files are run through jsonproc, which is a tool that converts JSON data to an output file
|
|
|
|
# based on an Inja template. https://github.com/pantor/inja
|
|
|
|
|
|
|
|
AUTO_GEN_TARGETS += $(DATA_SRC_SUBDIR)/wild_encounters.h
|
|
|
|
$(DATA_SRC_SUBDIR)/wild_encounters.h: $(DATA_SRC_SUBDIR)/wild_encounters.json $(DATA_SRC_SUBDIR)/wild_encounters.json.txt
|
|
|
|
$(JSONPROC) $^ $@
|
2019-04-30 19:28:31 +00:00
|
|
|
|
2019-05-02 14:21:58 +00:00
|
|
|
$(C_BUILDDIR)/wild_encounter.o: c_dep += $(DATA_SRC_SUBDIR)/wild_encounters.h
|
2022-04-05 03:22:43 +00:00
|
|
|
|
|
|
|
AUTO_GEN_TARGETS += $(DATA_SRC_SUBDIR)/region_map/region_map_entries.h
|
|
|
|
$(DATA_SRC_SUBDIR)/region_map/region_map_entries.h: $(DATA_SRC_SUBDIR)/region_map/region_map_sections.json $(DATA_SRC_SUBDIR)/region_map/region_map_sections.json.txt
|
|
|
|
$(JSONPROC) $^ $@
|
|
|
|
|
|
|
|
$(C_BUILDDIR)/region_map.o: c_dep += $(DATA_SRC_SUBDIR)/region_map/region_map_entries.h
|