Spell fix in comment.
[TD_C.git] / README
diff --git a/README b/README
index a8411009e3dddf6e7f7f2a541a7df045772824bb..80f8fbc5e34d6ee47591676614bae578c1d08adf 100644 (file)
--- a/README
+++ b/README
@@ -5,29 +5,24 @@ The whole purpose of the current C code is to solve the
 Polytech'Marseille C tutorial exercices.
 
 The repositories organisation is pretty straightforward: 
--> exo? where ? is a digit is the repository where lies the 
-solution to exercice one, and so on.
+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 solutions:
+Building the solution:
 -----------------------
 
-  cd exo1 && make
-  cd exo2 && make
-  cd exo3 && make
+  cd TP_#/exo? && make
 
-Cleaning the solutions:
+Cleaning the solution:
 -----------------------
 
-  cd exo1 && make clean
-  cd exo2 && make clean
-  cd exo3 && make clean
+  cd TP_#/exo? && make clean
 
-Running the solutions:
+Running the solution:
 ----------------------
 
-  cd exo1 && ./exo1
-  cd exo2 && ./exo2
-  cd exo3 && ./exo3
+  cd TP_#/exo? && ./exo?
 
 Exercice skeleton:
 ------------------
@@ -35,7 +30,7 @@ Exercice skeleton:
 It's the directory exo_skel with a basic Makefile inside
 
 To use it:
-  $ cp -a exo_skel exo# (where # is a digit)
-  $ cd exo# && cp exo_skel.c exo#.c                    
-  edit the Makefile to change the TARGET variable to the 
+  $ 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