From b9218d843b1dc1b5ab52bb375c910118865ad112 Mon Sep 17 00:00:00 2001 From: yenatch Date: Sun, 8 Dec 2013 18:02:29 -0500 Subject: Makefile: use += to append to variables --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e68fa7ac..6caf470f 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ $(shell $(foreach obj, $(OBJS), \ $(eval $(obj:.o=)_DEPENDENCIES := $(shell $(PYTHON) extras/pokemontools/scan_includes.py $(obj:.o=.asm) | sed s/globals.asm//g)) \ )) $(shell $(foreach obj, $(OBJS), \ - $(eval ALL_DEPENDENCIES := $(ALL_DEPENDENCIES) $($(obj:.o=)_DEPENDENCIES)) \ + $(eval ALL_DEPENDENCIES += $($(obj:.o=)_DEPENDENCIES)) \ )) all: $(ROMS) -- cgit v1.2.3