I have noticed that in Implicit Rules in Gnu Make is variable $(TARGET_ARCH) for example :
$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
LINK.o = $(CC) $(LDFLAGS) $(TARGET_ARCH)
I supposed that this variable is needed for cross compilation, but I haven't found any information about it in Gnu Make documentation.