TP 13 exo1: Document some more the Makefile usage
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 9 Mar 2017 21:24:21 +0000 (22:24 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 9 Mar 2017 21:24:21 +0000 (22:24 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
TP_13/exo1/Makefile

index 20746ac802aae220d185dd15b2d0a726549b546c..6dcb22ae3bfa6103f0cfb37e90cccbbda7ddd67a 100644 (file)
@@ -1,10 +1,13 @@
 # Sample Makefile to build simple project.
 #
 # This Makefile expect all source files (.c) to be at the same level, in the
-# current working directory.
+# $(SRC_PATH) directory.
+#
+# This Makefile expect all embedded library files (.c) to be at the same level, in the
+# $(LIBRARY_PATH) directory.
 #
 # It will automatically generate dependencies, compile all files, and produce a
-# binary using the provided name.
+# binary using the provided name linked against the library if necessary.
 #
 # Set BINARY_NAME to the name of the binary file to build.
 # Set LIBRARY_NAME to the name of the library file to build.