mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-03-21 09:55:42 -05:00
13 lines
530 B
Makefile
13 lines
530 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/trainers_frlg.h
|
|
AUTO_GEN_TARGETS += src/data/battle_partners.h
|
|
AUTO_GEN_TARGETS += test/battle/trainer_control.h
|
|
AUTO_GEN_TARGETS += test/battle/partner_control.h
|
|
AUTO_GEN_TARGETS += src/data/debug_trainers.h
|
|
|
|
%.h: %.party $(TRAINERPROC)
|
|
$(CPP) $(CPPFLAGS) -traditional-cpp - < $< | $(TRAINERPROC) -o $@ -i $< -
|