mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-05 21:25:24 -05:00
10 lines
326 B
Makefile
10 lines
326 B
Makefile
# 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 += src/data/items.h
|
|
|
|
src/data/items.h: src/data/items.json src/data/items.json.txt
|
|
$(JSONPROC) $^ $@
|
|
|
|
$(C_BUILDDIR)/item.o: c_dep += src/data/items.h
|