The linux kernel (and various other projects including git) have very nice makefiles that hide the giant cc calls into nice little acronyms.
For example:
You can prepend @ to calls in the makefile targets.
E.g.:
%.o: %.c @$(CC) $(CFLAGS) -c -o $@ $< @echo "CC $<"