mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 13:09:56 +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...
14 lines
328 B
Makefile
14 lines
328 B
Makefile
# Move data
|
|
|
|
MOVE_DIR = $(DATA_ASM_SUBDIR)/move
|
|
MOVE_DATA = $(MOVE_DIR)/move_data.inc
|
|
|
|
# Headers included by tools/dungeonjson/dungeonjson.cpp:generate_move_data_text
|
|
MOVE_DATA_INC = \
|
|
include/constants/type.h
|
|
|
|
data_move: $(MOVE_DATA);
|
|
|
|
$(MOVE_DATA): $(MOVE_DIR)/move_data.json $(MOVE_DATA_INC)
|
|
$(DUNGEONJSON) move pmd-red $<
|