Makefile: $(CC) actually expands to `cc`, not `gcc`.
authorW. Trevor King <wking@tremily.us>
Fri, 5 Oct 2012 17:38:08 +0000 (10:38 -0700)
committerW. Trevor King <wking@tremily.us>
Fri, 5 Oct 2012 17:38:08 +0000 (10:38 -0700)
Makefile

index 5ff17ab7e4eda5e4d8905c59d936722c7cc641f5..d6ad2e6940d20b03e4ea42bd789163ee003af27c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -105,9 +105,9 @@ dist:
 # which is the final rule used to determine the prerequisites.
 #
 # The recipe expands to
-#   gcc  -o hello_world hello_world.o $(hello_world_LIBS)
+#   cc  -o hello_world hello_world.o $(hello_world_LIBS)
 # which expands to (if hello_world_LIBS was set to `-lm`)
-#   gcc  -o hello_world hello_world.o -lm
+#   cc  -o hello_world hello_world.o -lm
 #
 # Striking the right balance between "everything handled
 # automatically" (i.e. "complicated") and "everything handled