From fc9d5dcf82ecbaaad51efec7aa96b3089c9a23ec Mon Sep 17 00:00:00 2001
From: "Marcus M. Darden" <mmdarden@umich.edu>
Date: Sun, 4 Feb 2018 23:30:05 -0500
Subject: [PATCH] Add message about compiler generated dependencies.

---
 Makefile | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index 7376368..1c3b22a 100644
--- a/Makefile
+++ b/Makefile
@@ -237,15 +237,18 @@ help:
 # myclass.o: myclass.cpp myclass.h $(HEADERS)
 # project5.o: project5.cpp myclass.o $(HEADERS)
 #
-# ADD YOUR OWN DEPENDENCIES HERE
-
+# SOME EXAMPLES
+#
 #test_thing: test_thing.cpp class.o functions.o
-
 #class.o: class.cpp class.h
-
 #functions.o: functions.cpp functions.h
-
 #project0.o: project0.cpp class.h functions.h
+#
+# THE COMPILER CAN GENERATE DEPENDENCIES FROM SOURCE CODE
+#
+# % g++ -MM *.cpp
+#
+# ADD YOUR OWN DEPENDENCIES HERE
 
 ######################
 # TODO (end) #
-- 
GitLab