TP 13 exo1: Implement all the required features.
[TD_C.git] / TP_13 / exo1 / Makefile
index 6dcb22ae3bfa6103f0cfb37e90cccbbda7ddd67a..fd958781e5a24c5afff621cac8df9daabc8639e3 100644 (file)
@@ -3,7 +3,7 @@
 # This Makefile expect all source files (.c) to be at the same level, in the
 # $(SRC_PATH) directory.
 #
-# This Makefile expect all embedded library files (.c) to be at the same level, in the
+# This Makefile expect all embedded library source files (.c) to be at the same level, in the
 # $(LIBRARY_PATH) directory.
 #
 # It will automatically generate dependencies, compile all files, and produce a
@@ -50,7 +50,7 @@ OPTI_FLAG = -O3
 endif
 
 # Putting header files in the source directory is not the purpose of this INCLUDES variable
-INCLUDES := $(INCLUDES) -I$(SRC_PATH) -I$(LIBRARY_PATH)
+INCLUDES := $(INCLUDES) -I$(LIBRARY_PATH)
 CFLAGS := $(CFLAGS) $(WARN_FLAGS) $(STD_FLAG) $(OPTI_FLAG) $(DEBUG_FLAG) $(INCLUDES)
 LIBCFLAGS := -fPIC $(CFLAGS)
 LDFLAGS := $(LDFLAGS) $(STRIP_FLAG)