mirror of
https://github.com/rh-hideout/pokeemerald-expansion
synced 2025-10-05 23:42:46 +02:00
11 lines
420 B
Makefile
11 lines
420 B
Makefile
# party files are run through trainerproc, which is a tool that converts party data to an output file
|
|
# matching the current trainer .h formatting
|
|
|
|
AUTO_GEN_TARGETS += src/data/trainers.h
|
|
AUTO_GEN_TARGETS += src/data/battle_partners.h
|
|
AUTO_GEN_TARGETS += test/battle/trainer_control.h
|
|
AUTO_GEN_TARGETS += src/data/debug_trainers.h
|
|
|
|
%.h: %.party
|
|
$(CPP) $(CPPFLAGS) -traditional-cpp - < $< | $(TRAINERPROC) -o $@ -i $< -
|