diff options
author | yenatch <yenatch@gmail.com> | 2013-11-23 02:54:02 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-11-23 02:54:02 -0500 |
commit | bb68a7633023ecf1b4b54ac627819e2efd4e3aa7 (patch) | |
tree | a40cd557fc402c71fe5d49cd5b685863a0d93f07 | |
parent | cf6295cb9fcd6fe7173efc76bd039be79b5781b2 (diff) |
Makefile: more readable object list
-rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -6,7 +6,15 @@ PYTHON := python TEXTFILES := $(shell find ./ -type f -name '*.asm' | grep -v globals.asm) TEXTQUEUE := -CRYSTAL_OBJS := wram.o main.o engine/events.o engine/scripting_crystal.o engine/events_2.o stats/egg_moves_crystal.o stats/evos_attacks_crystal.o +CRYSTAL_OBJS := \ +wram.o \ +main.o \ +engine/events.o \ +engine/scripting_crystal.o \ +engine/events_2.o \ +stats/egg_moves_crystal.o \ +stats/evos_attacks_crystal.o + OBJS := $(CRYSTAL_OBJS) ROMS := pokecrystal.gbc |