X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=TP_13%2Fexo1%2FMakefile;h=791c7d48cfe295a9f0efa66f5ce2b9df1f7791fa;hb=cfdd46d2e85b05f77a03ae31f721e2fd4030996f;hp=20746ac802aae220d185dd15b2d0a726549b546c;hpb=bdbc4f521c21287e53bb7134d4aaa060781e09cb;p=TD_C.git diff --git a/TP_13/exo1/Makefile b/TP_13/exo1/Makefile index 20746ac..791c7d4 100644 --- a/TP_13/exo1/Makefile +++ b/TP_13/exo1/Makefile @@ -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 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 -# 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.