summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2020-11-25 11:46:12 -0500
committerluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2020-11-25 11:46:12 -0500
commit59a6d18679365cb3a2e2d7fa7571fa2495652939 (patch)
tree97c3fa63bb539cc9fe8ba88f1e42dfc279875f4f /Makefile
parent6bf6cf2eb8ca0ee7b66c62ca9ab39d59f2a83877 (diff)
Minor INSTALL.md cleanup, also don't print the wall of linked objects during make (helps spot warnings more easily)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 72af64f5c..aa588445f 100644
--- a/Makefile
+++ b/Makefile
@@ -341,7 +341,8 @@ $(OBJ_DIR)/ld_script.ld: $(LD_SCRIPT) $(LD_SCRIPT_DEPS)
cd $(OBJ_DIR) && sed "s#tools/#../../tools/#g" ../../$(LD_SCRIPT) > ld_script.ld
$(ELF): $(OBJ_DIR)/ld_script.ld $(OBJS) berry_fix libagbsyscall
- cd $(OBJ_DIR) && $(LD) $(LDFLAGS) -T ld_script.ld -o ../../$@ $(OBJS_REL) $(LIB)
+ @echo "cd $(OBJ_DIR) && $(LD) $(LDFLAGS) -T ld_script.ld -o ../../$@ <objects> <lib>"
+ @cd $(OBJ_DIR) && $(LD) $(LDFLAGS) -T ld_script.ld -o ../../$@ $(OBJS_REL) $(LIB)
$(FIX) $@ -t"$(TITLE)" -c$(GAME_CODE) -m$(MAKER_CODE) -r$(REVISION) --silent
$(ROM): $(ELF)