Introduction: ------------- The whole purpose of the current C code is to solve the Polytech'Marseille C tutorial exercices. The repositories organisation is pretty straightforward: TP_#/exo?, where # is a digit representing the TP number and ? is a digit representing the exercice number, is the repository where lies the solution to exercice ? TP #. Building the solution: ----------------------- cd TP_#/exo? && make Cleaning the solution: ----------------------- cd TP_#/exo? && make clean Running the solution: ---------------------- cd TP_#/exo? && ./exo? Exercice skeleton: ------------------ It's the directory exo_skel with a basic Makefile inside To use it: $ cp -a exo_skel TP_#/exo? (where # and ? are digits) $ cd TP_#/exo? && cp exo_skel.c exo?.c Edit the Makefile to change the BINARY_NAME variable to the exercice name desired